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