void setup() {
// put your setup code here, to run once:
pinMode(4, INPUT_PULLUP);
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
if(digitalRead(4)==LOW){
delay(20);
Serial.println("push sw1");
}
}