// Simplest button-LED program
// https://wokwi.com/projects/470624768137802753
// Indicate the button status with a light
void setup() {
pinMode(LED_BUILTIN, INPUT_PULLUP);
}
void loop() {
}
// Simplest button-LED program
// https://wokwi.com/projects/470624768137802753
// Indicate the button status with a light
void setup() {
pinMode(LED_BUILTIN, INPUT_PULLUP);
}
void loop() {
}