int LED = 4;
void setup() {
pinMode (LED, OUTPUT);
}
void loop() {
digitalWrite(LED, HIGH);
delay(1000);
digitalWrite(LED, LOW);
// put your main code here, to run repeatedly:
delay(1000); // this speeds up the simulation
}
int LED = 4;
void setup() {
pinMode (LED, OUTPUT);
}
void loop() {
digitalWrite(LED, HIGH);
delay(1000);
digitalWrite(LED, LOW);
// put your main code here, to run repeatedly:
delay(1000); // this speeds up the simulation
}