// Praktik 1 - Push Button 1 LED
// Wahyu Priambodo / TMJ 3B / 2207421048
void setup() {
//put your code here, to run once
pinMode(13, OUTPUT);
pinMode(7, INPUT);
}
void loop() {
//put your code here, to run repeatedly
if(digitalRead(7) == HIGH){
digitalWrite(13, HIGH);
delay(1000);
}
else{
digitalWrite(13, LOW);
}
}