Hack star
Published © MIT

Blink an LED - ESP32 online Arduino Simulator - 2022

Step by step guide for you to build LED blink Example on ESP32 online embedded systems simulator by Wokwi. #EmbeddedSystemsSimulator #wokwi

BeginnerProtip1 hour9,171

Things used in this project

Story

Read more

Schematics

ESP32 Blink an LED project on ESP32 Simulator by Wokwi

ESP32 Blink an LED project on ESP32 Simulator by Wokwi

Code

ESP32 Simulator - Blink an LED project by Wokwi

Arduino
ESP32 Simulator - Blink an LED project by Wokwi
#define LED 2

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

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

Credits

Hack star

Hack star

75 projects β€’ 101 followers
an Arduino enthusiast and an electronic hobbyist

Comments