int LED = 15; // LED di pin IO15 pada espectro32 | |
int button = 4; // Button di pin IO4 pada espectro32 | |
void setup() { | |
pinMode(LED, OUTPUT); //Led Sebagai Output | |
pinMode(button, INPUT); // Button Sebagai Input | |
} | |
void loop() { | |
int buttonState = digitalRead(button); | |
if (buttonState == HIGH) { | |
digitalWrite(LED, HIGH); | |
} else { | |
digitalWrite(LED, LOW); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment