1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-02-11 05:54:16 +01:00

Corrected comments in LiquidCrystal examples

This commit is contained in:
Tom Igoe 2010-02-08 23:35:15 +00:00
parent 27a5bde5e7
commit ef68422220

View File

@ -26,8 +26,8 @@
by Limor Fried (http://www.ladyada.net) by Limor Fried (http://www.ladyada.net)
example added 9 Jul 2009 example added 9 Jul 2009
by Tom Igoe by Tom Igoe
modified 25 July 2009 modified 8 Feb 2010
by David A. Mellis by Tom Igoe
http://www.arduino.cc/en/Tutorial/LiquidCrystal http://www.arduino.cc/en/Tutorial/LiquidCrystal
*/ */
@ -44,8 +44,8 @@ const int numCols = 16;
LiquidCrystal lcd(12, 11, 5, 4, 3, 2); LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() { void setup() {
// set up the LCD's number of rows and columns: // set up the LCD's number of columns and rows:
lcd.begin(numRows, numCols); lcd.begin(numCols,numRows);
} }
void loop() { void loop() {