aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Igoe <t.igoe@arduino.cc>2009-08-02 18:44:30 +0000
committerTom Igoe <t.igoe@arduino.cc>2009-08-02 18:44:30 +0000
commitbf818365918af5909267b953209e3872333689b7 (patch)
tree425d29acc8e34839933f793ae2b773ddb0154cb3
parent37a1c7135174c4012e29cda13e2b839ca5dac4fd (diff)
Changed begin() in LiquidCrystal examples
-rw-r--r--libraries/LiquidCrystal/examples/Blink/Blink.pde2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/LiquidCrystal/examples/Blink/Blink.pde b/libraries/LiquidCrystal/examples/Blink/Blink.pde
index 16529e1..d839ef2 100644
--- a/libraries/LiquidCrystal/examples/Blink/Blink.pde
+++ b/libraries/LiquidCrystal/examples/Blink/Blink.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);
// Print a message to the LCD.
lcd.print("hello, world!");
}