Hack star
Published © MIT

ESP32 Online systems Simulator you were looking for!✨ 2022✨

Free ESP32 Online embedded systems Simulator by Wokwi with support for multiple development boards. MicroPython supported! #EmbeddedSystems

BeginnerProtip1 hour39,095
ESP32 Online systems Simulator you were looking for!✨ 2022✨

Things used in this project

Story

Read more

Code

ESP32 Micropython example

Python
from machine import Pin, I2C
import ssd1306

# ESP32 Pin assignment 
i2c = I2C(0, scl=Pin(22), sda=Pin(21))

oled_width = 128
oled_height = 64
oled = ssd1306.SSD1306_I2C(oled_width, oled_height, i2c)

oled.text('Hello, Wokwi!', 10, 10)      
oled.show()

Credits

Hack star

Hack star

75 projects • 97 followers
an Arduino enthusiast and an electronic hobbyist

Comments