const int GPIO = 0;
void setup() {
// put your setup code here, to run once:
pinMode(GPIO,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(GPIO,HIGH);
delay(1000); // this speeds up the simulation
digitalWrite(GPIO,LOW);
delay(1000);
}