From ef68422220012bc7e88f31709ee87a151fec322c Mon Sep 17 00:00:00 2001 From: Tom Igoe Date: Mon, 8 Feb 2010 23:35:15 +0000 Subject: [PATCH] Corrected comments in LiquidCrystal examples --- libraries/LiquidCrystal/examples/setCursor/setCursor.pde | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/LiquidCrystal/examples/setCursor/setCursor.pde b/libraries/LiquidCrystal/examples/setCursor/setCursor.pde index edd2e774b..ca6f62ecc 100644 --- a/libraries/LiquidCrystal/examples/setCursor/setCursor.pde +++ b/libraries/LiquidCrystal/examples/setCursor/setCursor.pde @@ -26,8 +26,8 @@ by Limor Fried (http://www.ladyada.net) example added 9 Jul 2009 by Tom Igoe - modified 25 July 2009 - by David A. Mellis + modified 8 Feb 2010 + by Tom Igoe http://www.arduino.cc/en/Tutorial/LiquidCrystal */ @@ -44,8 +44,8 @@ const int numCols = 16; LiquidCrystal lcd(12, 11, 5, 4, 3, 2); void setup() { - // set up the LCD's number of rows and columns: - lcd.begin(numRows, numCols); + // set up the LCD's number of columns and rows: + lcd.begin(numCols,numRows); } void loop() {