Cherry picked fix from 87865ac19d

This commit is contained in:
Arturo Guadalupi 2015-01-12 14:37:50 +01:00 committed by Federico Fissore
parent 136c04ad28
commit 1f08b5ede4
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ void loop() {
// loop over the rows:
for (int thisRow = 0; thisRow < numCols; thisRow++) {
// set the cursor position:
lcd.setCursor(thisRow, thisCol);
lcd.setCursor(thisCol, thisRow);
// print the letter:
lcd.write(thisLetter);
delay(200);