#define led1 14
void setup() {
// put your setup code here, to run once:
pinMode (led1,HIGH);
delay(1000)
pinMode (led1,LOW);
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}#define led1 14
void setup() {
// put your setup code here, to run once:
pinMode (led1,HIGH);
delay(1000)
pinMode (led1,LOW);
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}