const int led=4;
const int push=5;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
pinMode(led, OUTPUT);
digitalWrite(led,HIGH);
// put your main code here, to run repeatedly:
delay(1000);
//digitalWrite(led, LOW);
// this speeds up the simulation
}