diff options
author | Tom Igoe <t.igoe@arduino.cc> | 2009-08-02 18:44:52 +0000 |
---|---|---|
committer | Tom Igoe <t.igoe@arduino.cc> | 2009-08-02 18:44:52 +0000 |
commit | 7544b57ea874cc985e6461815bac16f632fd07e4 (patch) | |
tree | 072f5395697004c4ea109b1600a773ec68fe7e27 /libraries | |
parent | bf818365918af5909267b953209e3872333689b7 (diff) |
Changed begin() in LiquidCrystal examples
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/LiquidCrystal/examples/Cursor/Cursor.pde | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/LiquidCrystal/examples/Cursor/Cursor.pde b/libraries/LiquidCrystal/examples/Cursor/Cursor.pde index dcc27e5..b8ef9d2 100644 --- a/libraries/LiquidCrystal/examples/Cursor/Cursor.pde +++ b/libraries/LiquidCrystal/examples/Cursor/Cursor.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!"); } |