From d72b7b522223cb3dae71260ba7e097538b8d5db5 Mon Sep 17 00:00:00 2001 From: Tom Igoe Date: Mon, 8 Feb 2010 23:36:02 +0000 Subject: [PATCH] Corrected comments in LiquidCrystal examples --- libraries/LiquidCrystal/examples/Scroll/Scroll.pde | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libraries/LiquidCrystal/examples/Scroll/Scroll.pde b/libraries/LiquidCrystal/examples/Scroll/Scroll.pde index 9276553c4..13493ee62 100644 --- a/libraries/LiquidCrystal/examples/Scroll/Scroll.pde +++ b/libraries/LiquidCrystal/examples/Scroll/Scroll.pde @@ -40,9 +40,8 @@ LiquidCrystal lcd(12, 11, 5, 4, 3, 2); void setup() { - // set up the LCD's number of rows and columns: + // set up the LCD's number of columns and rows: lcd.begin(16, 2); - //lcd.setCursor(0,7); // Print a message to the LCD. lcd.print("hello, world!"); delay(1000);