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