diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2009-07-25 18:26:29 +0000 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2009-07-25 18:26:29 +0000 |
commit | 58b4e52f7f7340f50f56363575dd2b08d71eec0e (patch) | |
tree | 93ff67618e28af462666b56c36266fba53111092 /libraries/LiquidCrystal/examples/Cursor | |
parent | f504460fc47cbd8d0e127e410263558912259f64 (diff) |
Updating LiquidCrystal API and examples.
Diffstat (limited to 'libraries/LiquidCrystal/examples/Cursor')
-rw-r--r-- | libraries/LiquidCrystal/examples/Cursor/Cursor.pde | 4 |
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); } |