Skip to content

Instantly share code, notes, and snippets.

@EspaceRaspberryFrancais
Last active January 1, 2020 19:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EspaceRaspberryFrancais/8d82b6f1d2ab729d684add854a85171c to your computer and use it in GitHub Desktop.
Save EspaceRaspberryFrancais/8d82b6f1d2ab729d684add854a85171c to your computer and use it in GitHub Desktop.
from RPLCD.gpio import CharLCD
import time
lcd = CharLCD(cols=16, rows=2, pin_rs=37, pin_e=35, pins_data=[33, 31, 29, 23])
while True :
lcd.write_string(u'Espace Raspberry')
time.sleep(2)
lcd.clear()
time.sleep(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment