import time
time.sleep(0.1) # Wait for USB to become ready

print("Hello, Pi Pico!")

from machine import Pin, I2C
from time import sleep
from i2c_lcd import I2cLcd  # Ensure i2c_lcd.py is in the same folder

# Setup I2C for LCD
I2C_ADDR = 0x27  # Replace with your LCD's I2C address if different
i2c = I2C(0, sda=Pin(0), scl=Pin(1), freq=400000)
lcd = I2cLcd(i2c, I2C_ADDR, 2, 16)

# Setup buttons
count_button = Pin(15, Pin.IN, Pin.PULL_DOWN)
reset_button = Pin(16, Pin.IN, Pin.PULL_DOWN)

# Initialize counter
counter = 0

# Function to update the LCD
def update_lcd():
    lcd.clear()
    lcd.putstr("Count: {}".format(counter))

# Main program
update_lcd()  # Initial display
while True:
    if count_button.value():
        counter += 1
        update_lcd()
        sleep(0.3)  # Debounce delay

    if reset_button.value():
        counter = 0
        update_lcd()
        sleep(0.3)  # Debounce delay
BOOTSELLED1239USBRaspberryPiPico©2020RP2-8020/21P64M15.00TTT
pico:GP0
pico:GP1
pico:GND.1
pico:GP2
pico:GP3
pico:GP4
pico:GP5
pico:GND.2
pico:GP6
pico:GP7
pico:GP8
pico:GP9
pico:GND.3
pico:GP10
pico:GP11
pico:GP12
pico:GP13
pico:GND.4
pico:GP14
pico:GP15
pico:GP16
pico:GP17
pico:GND.5
pico:GP18
pico:GP19
pico:GP20
pico:GP21
pico:GND.6
pico:GP22
pico:RUN
pico:GP26
pico:GP27
pico:GND.7
pico:GP28
pico:ADC_VREF
pico:3V3
pico:3V3_EN
pico:GND.8
pico:VSYS
pico:VBUS
lcd1:GND
lcd1:VCC
lcd1:SDA
lcd1:SCL
btn1:1.l
btn1:2.l
btn1:1.r
btn1:2.r
btn2:1.l
btn2:2.l
btn2:1.r
btn2:2.r
gnd1:GND
r1:1
r1:2
r2:1
r2:2