#define GPIO_PIN 8
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:
//turnning on the GPIO PIN
digitalWrite(GPIO_PIN, HIGH);
}