Skip to content

Commit 1f08b5e

Browse files
agdlFederico Fissore
authored and
Federico Fissore
committed
Cherry picked fix from 87865ac
1 parent 136c04a commit 1f08b5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/LiquidCrystal/examples/setCursor/setCursor.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ void loop() {
6060
// loop over the rows:
6161
for (int thisRow = 0; thisRow < numCols; thisRow++) {
6262
// set the cursor position:
63-
lcd.setCursor(thisRow, thisCol);
63+
lcd.setCursor(thisCol, thisRow);
6464
// print the letter:
6565
lcd.write(thisLetter);
6666
delay(200);

0 commit comments

Comments
 (0)