From e490c42898282a1786ba1649f71e5eaabd347494 Mon Sep 17 00:00:00 2001 From: Joe Tretter Date: Tue, 22 Sep 2020 16:52:37 -0500 Subject: [PATCH] remoevd tasks.json - doesn't seem to be needed... --- AlexaControlTest/.vscode/tasks.json | 13 ------------- BlinkiWithDebuggingWorking/.vscode/tasks.json | 13 ------------- BlinkiWithDebuggingWorking/src/main.cpp | 6 +++--- 3 files changed, 3 insertions(+), 29 deletions(-) delete mode 100644 AlexaControlTest/.vscode/tasks.json delete mode 100644 BlinkiWithDebuggingWorking/.vscode/tasks.json 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);