#define GPIO_PIN 8
void setup() {
// put your setup code here, to run once:
pinMode(GPIO_PIN, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(GPIO_PIN, HIGH);
delay(1000);
digitalWrite(GPIO_PIN, LOW);
delay(1000);
}