#define GPIO_PIN 8 // output pin
void setup() {
//put your setup code here, to run once:
//configuring GPIO as output pin
pinMode(GPIO_PIN, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
//Turing on the GPIO PIN
digitalWrite(GPIO_PIN, HIGH);
}