remoevd tasks.json - doesn't seem to be needed...
This commit is contained in:
13
AlexaControlTest/.vscode/tasks.json
vendored
13
AlexaControlTest/.vscode/tasks.json
vendored
@@ -1,13 +0,0 @@
|
|||||||
{
|
|
||||||
"version": "2.0.0",
|
|
||||||
"tasks": [
|
|
||||||
{
|
|
||||||
"type": "PlatformIO",
|
|
||||||
"task": "Pre-Debug",
|
|
||||||
"problemMatcher": [
|
|
||||||
"$platformio"
|
|
||||||
],
|
|
||||||
"label": "PlatformIO: Build in debug mode"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
13
BlinkiWithDebuggingWorking/.vscode/tasks.json
vendored
13
BlinkiWithDebuggingWorking/.vscode/tasks.json
vendored
@@ -1,13 +0,0 @@
|
|||||||
{
|
|
||||||
"version": "2.0.0",
|
|
||||||
"tasks": [
|
|
||||||
{
|
|
||||||
"type": "PlatformIO",
|
|
||||||
"task": "Pre-Debug",
|
|
||||||
"problemMatcher": [
|
|
||||||
"$platformio"
|
|
||||||
],
|
|
||||||
"label": "PlatformIO: Build in debug mode"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user