void setup() {
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN,1); // put your main code here, to run repeatedly:
delay(1000); // this speeds up the simulation
digitalWrite(LED_BUILTIN,0);
delay(1000);
}
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN,1); // put your main code here, to run repeatedly:
delay(1000); // this speeds up the simulation
digitalWrite(LED_BUILTIN,0);
delay(1000);
}