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