remoevd tasks.json - doesn't seem to be needed...

This commit is contained in:
Joe Tretter
2020-09-22 16:52:37 -05:00
parent 37d6e8e3d2
commit 2407a4d596
2 changed files with 3 additions and 16 deletions

13
.vscode/tasks.json vendored
View File

@@ -1,13 +0,0 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "PlatformIO",
"task": "Pre-Debug",
"problemMatcher": [
"$platformio"
],
"label": "PlatformIO: Build in debug mode"
}
]
}

View File

@@ -8,11 +8,11 @@ void setup()
Serial.println("Hi from the setup function."); Serial.println("Hi from the setup function.");
} }
int a = 1000; int a = 1;
int b = 100; int b = 1;
void loop() void loop()
{ {
Serial.println(" - Loop"); Serial.printf(" - Loop %d %d\n",a++,b++);
// put your main code here, to run repeatedly: // put your main code here, to run repeatedly:
digitalWrite(LED_BUILTIN, HIGH); digitalWrite(LED_BUILTIN, HIGH);
delay(a); delay(a);