#Control LCD display using library & I2C protocol
from machine import Pin, I2C
from time import sleep
#Add provided code here to include the two library files
I2C_ADDR = 0x27
totalRows = 2
totalColumns = 16
i2c = I2C(scl=Pin(27), sda=Pin(26), freq=10000, id=1)
lcd = I2cLcd(i2c, I2C_ADDR, totalRows, totalColumns)
seconds=1
#add code here to show a welcome message on the LCD
#create a main loop here to count seconds on the LCD