Changed begin() in LiquidCrystal examples
This commit is contained in:
parent
bf81836591
commit
7544b57ea8
|
@ -39,7 +39,7 @@ 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 rows and columns:
|
||||||
lcd.begin(2, 16);
|
lcd.begin(16, 2);
|
||||||
// Print a message to the LCD.
|
// Print a message to the LCD.
|
||||||
lcd.print("hello, world!");
|
lcd.print("hello, world!");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue