"""
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Raspberry Pi Pico I2C LCD Display (MicroPython)          ┃
┃                                                          ┃
┃ An example of using an I2C LCD display with the          ┃
┃ Raspberry Pi Pico.                                       ┃
┃                                                          ┃
┃ Copyright (c) 2023 Anderson Costa                        ┃
┃ GitHub: github.com/arcostasi                             ┃
┃ License: MIT                                             ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
"""

from machine import I2C, Pin
from time import sleep
from pico_i2c_lcd import I2cLcd

def initialize_i2c_lcd(sda_pin, scl_pin, i2c_freq):
    """Initialize the I2C LCD display with the given parameters."""
    i2c_bus = I2C(0, sda=Pin(sda_pin), scl=Pin(scl_pin), freq=i2c_freq)
    i2c_address = i2c_bus.scan()[0]
    return I2cLcd(i2c_bus, i2c_address, 2, 16), i2c_address

def display_address(lcd, i2c_address):
    """Display the I2C address in decimal and hexadecimal formats."""
    lcd.blink_cursor_on()
    for address_format in (str, hex):
        lcd.putstr(f"I2C Address: {address_format(i2c_address)}\n")
        lcd.putstr("PI PICO Hardware")
        sleep(2)
        lcd.clear()
    lcd.blink_cursor_off()

def backlight_test(lcd):
    """Perform a backlight test by blinking the backlight 10 times."""
    lcd.clear()
    lcd.putstr("Backlight Test")
    for _ in range(10):
        lcd.backlight_on()
        sleep(0.2)
        lcd.backlight_off()
        sleep(0.2)
    lcd.backlight_on()

def hide_cursor_count(lcd):
    """Hide the cursor and display a count from 0 to 19."""
    lcd.clear()
    lcd.hide_cursor()
    for count in range(20):
        lcd.putstr(str(count))
        sleep(0.4)
        lcd.clear()

def main():
    """Main function to run the I2C LCD display example."""
    lcd_display, i2c_address = initialize_i2c_lcd(sda_pin=0, scl_pin=1, i2c_freq=400000)
    while True:
        display_address(lcd_display, i2c_address)
        backlight_test(lcd_display)
        hide_cursor_count(lcd_display)

if __name__ == '__main__':
    main()
$abcdeabcde151015202530354045505560fghijfghij
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