Initial basic application

This commit is contained in:
Philip Abbey
2023-10-31 13:32:42 +00:00
parent 3f713f5760
commit 8a4f514e6b
16 changed files with 521 additions and 0 deletions

31
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,31 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "monkeyc",
"request": "launch",
"name": "Run App",
"stopAtLaunch": false,
"device": "${command:GetTargetDevice}"
},
{
"type": "monkeyc",
"request": "launch",
"name": "Run Tests",
"runTests": true,
"device": "${command:GetTargetDevice}"
},
{
"type": "monkeyc",
"request": "launch",
"name": "Run Complication Apps",
"stopAtLaunch": false,
"complicationSubscriberFolder": "${command:GetComplicationSubscriberFolder}",
"complicationPublisherFolder": "${command:GetComplicationPublisherFolder}",
"device": "${command:GetTargetDevice}"
}
]
}