Closed
Description
This occurred while testing with the 2.0.1 rc1 JSON.
- Load sketch to turn LED on:
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
digitalWrite(LED_BUILTIN, HIGH);
}
void loop() {
}
-
LED is on.
-
Load blank sketch:
void setup() {
}
void loop() {
}
- LED remains on.
After step 3) I expect the LED to be off as the sketch is empty.