from machine import I2C
from machine import Pin
from esp8266_i2c_lcd import I2cLcd

LCD_I2C_ADDR = 0x3F  # 63
    
i2c = I2C(scl=Pin(0), sda=Pin(2), freq=400000)
lcd = I2cLcd(i2c, LCD_I2C_ADDR, 2, 16)         # 16 cols, 2 lines

lcd.clear()
lcd.putstr(" *Hello World!*\nIt's fine today.")
