aboutsummaryrefslogtreecommitdiff
path: root/libraries/LiquidCrystal/examples/Cursor
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/LiquidCrystal/examples/Cursor')
-rw-r--r--libraries/LiquidCrystal/examples/Cursor/Cursor.pde4
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/LiquidCrystal/examples/Cursor/Cursor.pde b/libraries/LiquidCrystal/examples/Cursor/Cursor.pde
index e28c719..dcc27e5 100644
--- a/libraries/LiquidCrystal/examples/Cursor/Cursor.pde
+++ b/libraries/LiquidCrystal/examples/Cursor/Cursor.pde
@@ -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);
}