Changed begin() in LiquidCrystal examples

This commit is contained in:
Tom Igoe 2009-08-02 18:41:40 +00:00
parent 8032397b18
commit 37a1c71351
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(2, 16);
lcd.begin(16,2);
}
void loop() {