aboutsummaryrefslogtreecommitdiff
path: root/libraries
diff options
context:
space:
mode:
authorTom Igoe <t.igoe@arduino.cc>2009-08-02 18:45:04 +0000
committerTom Igoe <t.igoe@arduino.cc>2009-08-02 18:45:04 +0000
commite66eb79a26977f897b6340a501003d6af41d998b (patch)
treeeea0c53c7a279bbc69bf043e048052567bff4e0f /libraries
parenta0f72ba82cf427f0253a848385d6f52aa55aa0e8 (diff)
Changed begin() in LiquidCrystal examples
Diffstat (limited to 'libraries')
-rw-r--r--libraries/LiquidCrystal/examples/Scroll/Scroll.pde2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/LiquidCrystal/examples/Scroll/Scroll.pde b/libraries/LiquidCrystal/examples/Scroll/Scroll.pde
index 4556a38..ec49244 100644
--- a/libraries/LiquidCrystal/examples/Scroll/Scroll.pde
+++ b/libraries/LiquidCrystal/examples/Scroll/Scroll.pde
@@ -39,7 +39,7 @@ LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
// set up the LCD's number of rows and columns:
- lcd.begin(2, 16);
+ lcd.begin(16, 2);
lcd.setCursor(0,7);
// Print a message to the LCD.
lcd.print("hello, world!");