diff --git a/AlexaControlTest/.vscode/tasks.json b/AlexaControlTest/.vscode/tasks.json deleted file mode 100644 index f6fcc3e..0000000 --- a/AlexaControlTest/.vscode/tasks.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "type": "PlatformIO", - "task": "Pre-Debug", - "problemMatcher": [ - "$platformio" - ], - "label": "PlatformIO: Build in debug mode" - } - ] -} \ No newline at end of file diff --git a/BlinkiWithDebuggingWorking/.vscode/tasks.json b/BlinkiWithDebuggingWorking/.vscode/tasks.json deleted file mode 100644 index f6fcc3e..0000000 --- a/BlinkiWithDebuggingWorking/.vscode/tasks.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "type": "PlatformIO", - "task": "Pre-Debug", - "problemMatcher": [ - "$platformio" - ], - "label": "PlatformIO: Build in debug mode" - } - ] -} \ No newline at end of file diff --git a/BlinkiWithDebuggingWorking/src/main.cpp b/BlinkiWithDebuggingWorking/src/main.cpp index 047ddb3..be032fa 100644 --- a/BlinkiWithDebuggingWorking/src/main.cpp +++ b/BlinkiWithDebuggingWorking/src/main.cpp @@ -8,11 +8,11 @@ void setup() Serial.println("Hi from the setup function."); } -int a = 1000; -int b = 100; +int a = 1; +int b = 1; void loop() { - Serial.println(" - Loop"); + Serial.printf(" - Loop %d %d\n",a++,b++); // put your main code here, to run repeatedly: digitalWrite(LED_BUILTIN, HIGH); delay(a);