from pico_i2c_lcd import I2cLcd
from machine import Pin, I2C
#component setup
led = Pin(15, Pin.OUT)
button = Pin(14, Pin.IN)
#lcd setup
I2c = I2C(0, sda = Pin(0), scl = Pin(1), freq = 400000)
lcd = I2cLcd(I2c, 0X27, 2, 16)from pico_i2c_lcd import I2cLcd
from machine import Pin, I2C
#component setup
led = Pin(15, Pin.OUT)
button = Pin(14, Pin.IN)
#lcd setup
I2c = I2C(0, sda = Pin(0), scl = Pin(1), freq = 400000)
lcd = I2cLcd(I2c, 0X27, 2, 16)