diff options
author | Tom Igoe <t.igoe@arduino.cc> | 2009-08-02 18:44:59 +0000 |
---|---|---|
committer | Tom Igoe <t.igoe@arduino.cc> | 2009-08-02 18:44:59 +0000 |
commit | a0f72ba82cf427f0253a848385d6f52aa55aa0e8 (patch) | |
tree | 5f41aa885a20e6c12fa8501b2ca38875a69b44a1 /libraries | |
parent | 4a6c91529652a8a411a45fa19dc7ad839508fcb2 (diff) |
Changed begin() in LiquidCrystal examples
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde b/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde index 9909349..642b80f 100644 --- a/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde +++ b/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde @@ -38,7 +38,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!"); } |