void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
pinMode(26,OUTPUT) ;
digitalWrite(26,HIGH) ;
delay(2000);
digitalWrite(26,LOW) ;
pinMode(23,OUTPUT) ;
digitalWrite(23,HIGH) ;
delay(2000);
digitalWrite(23,LOW) ;
}
void loop() {
// put your main code here, to run repeatedly:
// this speeds up the simulation
}