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