mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-30 16:24:09 +03:00
Changed begin() in LiquidCrystal examples
This commit is contained in:
@ -38,7 +38,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);
|
||||||
// initialize the serial communications:
|
// initialize the serial communications:
|
||||||
Serial.begin(9600);
|
Serial.begin(9600);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user