Changed begin() in LiquidCrystal examples
This commit is contained in:
parent
0675c7a005
commit
739714e28c
|
@ -41,7 +41,7 @@ int thisChar = 'a';
|
||||||
|
|
||||||
void setup() {
|
void setup() {
|
||||||
// set up the LCD's number of rows and columns:
|
// set up the LCD's number of rows and columns:
|
||||||
lcd.begin(2, 16);
|
lcd.begin(16, 2);
|
||||||
// turn on the cursor:
|
// turn on the cursor:
|
||||||
lcd.cursor();
|
lcd.cursor();
|
||||||
Serial.begin(9600);
|
Serial.begin(9600);
|
||||||
|
|
Loading…
Reference in New Issue