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