# write a micropython script to display your father contact no. in row 0
# and your mother contact no. in row 1.
from machine import Pin, SoftI2C
from lcd_api import LcdApi
from i2c_lcd import I2cLcd
from time import sleep
# Initialize I2C bus and LCD object
i2c = SoftI2C(scl=Pin(22), sda=Pin(21))
lcd = I2cLcd(i2c, 0x27, 16, 2) # Assuming 16x2 LCD
# Define contact numbers
father_contact = "Father: +91 8575737920"
mother_contact = "Mother: +91 9876543210"
# Display contact numbers on LCD
lcd.putstr(father_contact, 0, 0) # Display father's contact on row 0
lcd.putstr(mother_contact, 0, 1) # Display mother's contact on row 1
# Wait for a moment
sleep(5)
# Clear the LCD display
lcd.clear()