1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-20 21:01:25 +03:00

Updating LiquidCrystal API and examples.

This commit is contained in:
David A. Mellis
2009-07-25 18:26:29 +00:00
parent b72521d35b
commit 97706deda0
7 changed files with 34 additions and 30 deletions

View File

@ -45,10 +45,10 @@ void setup() {
}
void loop() {
// Turn off the display:
// Turn off the cursor:
lcd.noCursor();
delay(500);
// Turn on the display:
// Turn on the cursor:
lcd.cursor();
delay(500);
}