from lcd1602 import LCD # lcd1602 library를 pico 보드에 upload 해 놓아야 한다.
# i2c_number와 sda, scl의 GP number는 icd1602 library에서 정의 해 놓는다
lcd=LCD()
while True:
myName=input('What is Your Name? ')
lcd.clear()
greeting1='Hello '+myName
greeting2='Welcome to My Pi'
lcd.write(0,0,greeting1)
lcd.write(0,1,greeting2)
# https://images.theengineeringprojects.com/image/webp/2021/03/what-is-raspberry-pi-pico.png.webp?ssl=1
# https://toptechboy.com/lcd1602-display-library-for-micropython-and-the-raspberry-pi-pico-w/