import time
from machine import I2C, Pin
from time import sleep
from pico_i2c_lcd import I2cLcd
time.sleep(0.1) # Wait for USB to become ready
i2c = I2C(0, sda=Pin(), scl=Pin(1), freq=400000)
print("Hello, Pi Pico!")
import time
from machine import I2C, Pin
from time import sleep
from pico_i2c_lcd import I2cLcd
time.sleep(0.1) # Wait for USB to become ready
i2c = I2C(0, sda=Pin(), scl=Pin(1), freq=400000)
print("Hello, Pi Pico!")