ssd1306 not working??

All ESP8266 boards running MicroPython.
Official boards are the Adafruit Huzzah and Feather boards.
Target audience: MicroPython users with an ESP8266 board.
User avatar
Roberthh
Posts: 3668
Joined: Sat May 09, 2015 4:13 pm
Location: Rhineland, Europe

Re: ssd1306 not working??

Post by Roberthh » Mon Aug 30, 2021 8:54 am

The Pico port is different to the ESP8266 port. To mimic the ESP8266 behavior, you have to use SoftI2C instead of I2C. For instance:

i2c=SoftI2C(scl=Pin(5), sda=Pin(4))

Post Reply