Created
January 21, 2016 00:58
-
-
Save JanBe/8f8390484c13b7ab42a7 to your computer and use it in GitHub Desktop.
Adafruit LCD: Code snippet to reproduce an issue with writing subsequent messages to the LCD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import Adafruit_CharLCD as LCD | |
lcd = LCD.Adafruit_CharLCDPlate() | |
lcd.message('First line\nSecond line') | |
lcd.message('New first line\nNew second line') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment