From 59109d6322844d78e1a2542282ddac4986e3aee8 Mon Sep 17 00:00:00 2001 From: Tom Igoe Date: Sun, 2 Aug 2009 18:44:30 +0000 Subject: [PATCH] Changed begin() in LiquidCrystal examples --- hardware/libraries/LiquidCrystal/examples/Blink/Blink.pde | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardware/libraries/LiquidCrystal/examples/Blink/Blink.pde b/hardware/libraries/LiquidCrystal/examples/Blink/Blink.pde index 16529e1fa..d839ef26c 100644 --- a/hardware/libraries/LiquidCrystal/examples/Blink/Blink.pde +++ b/hardware/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!"); }