//Define the LED pin
#define LED_PIN 25 //GPIO25
void setup() {
//Initialize the LED pin as the output
pinMode(LED_PIN, OUTPUT);
}
void loop() {
digitalWrite(LED_PIN,HIGH);
delay(1000);
digitalWrite(LED_PIN,LOW);
delay(1000);
}
//Define the LED pin
#define LED_PIN 25 //GPIO25
void setup() {
//Initialize the LED pin as the output
pinMode(LED_PIN, OUTPUT);
}
void loop() {
digitalWrite(LED_PIN,HIGH);
delay(1000);
digitalWrite(LED_PIN,LOW);
delay(1000);
}