Hack star
Published © MIT

Virtual Free ESP32 Simulator - Program in Arduino style-2022

Start learning ESP32 programming easily online - You can use free ESP32 embedded systems simulator from Wokwi #ArduinoGoals2022

BeginnerProtip2 hours2,874
Virtual Free ESP32 Simulator - Program in Arduino style-2022

Things used in this project

Story

Read more

Code

ESP32 Blink LED

Arduino
#define LED 2

void setup() {
  pinMode(LED, OUTPUT);
}

void loop() {
  digitalWrite(LED, HIGH);
  delay(500);
  digitalWrite(LED, LOW);
  delay(500);
}
ac

Credits

Hack star
75 projects • 144 followers
an Arduino enthusiast and an electronic hobbyist

Comments