From 2407a4d5967a272604c61dfa1e7186ce45a16fc9 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... --- .vscode/tasks.json | 13 ------------- src/main.cpp | 6 +++--- 2 files changed, 3 insertions(+), 16 deletions(-) delete mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index f6fcc3e..0000000 --- a/.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/src/main.cpp b/src/main.cpp index 047ddb3..be032fa 100644 --- a/src/main.cpp +++ b/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);