DAY1-LED ON/OFF using button Copy - Wokwi ESP32, STM32, Arduino Simulator
Save
Share
DAY1-LED ON/OFF using button Copy
by
kritish
Docs
Sign in
Sign up
sketch.ino
diagram.json
Library Manager
#define LED 2 void setup() { pinMode(LED,OUTPUT); } void loop() { digitalWrite(LED, HIGH); }
Simulation