const int led1=7;
void setup() {pinMode(led1, OUTPUT);
// put your setup code here, to run once:
}
void loop() {digitalWrite(led1, HIGH);
delay(500);
digitalWrite(led1, LOW);
delay(500);
// put your main code here, to run repeatedly:
}
const int led1=7;
void setup() {pinMode(led1, OUTPUT);
// put your setup code here, to run once:
}
void loop() {digitalWrite(led1, HIGH);
delay(500);
digitalWrite(led1, LOW);
delay(500);
// put your main code here, to run repeatedly:
}