/*
Franzininho Blink
Visit https://wokwi.com to learn about the Wokwi Simulator
Visit https://franzininho.com.br to learn about the Franzininho
*/
#define LED 1 // Pino digital conectado ao LED
void setup() {
pinMode(LED, OUTPUT); // Pino digital de saída
}
void loop() {
digitalWrite(LED, HIGH); // Acende o LED
delay(1000); // Aguarda um segundo
digitalWrite(LED, LOW); // Apaga o LED
delay(1000); // Aguarda um segundo
}