docs/micropython-adapter/apis/lcd_driver
This module allows you to control a LCD display connected via I2C
Usage can be found on the [website(https://microcontrollerslab.com/i2c-lcd-esp32-esp8266-micropython-tutorial/) I found the underlying lib. Thanks microcontrollers lab for it
Pin Usage Info
In this example the pin used are for the board, Cytron Maker Pi RP2040, change it to your pins if you are using another set of SDA and SCL
The dangers of mixing up pins
Do not mix up SDA and SCL Those are not meant to be swappable and might cause damage if swapped
Initialization
import adapters
sdapin = 4
sclpin = 5
disp = adapters.lcd_driver.DisplayDriver(sclpin,sdapin).getDisplay()