From 671fcfcc5a272993e934c98b35f5bbfb4c436858 Mon Sep 17 00:00:00 2001 From: Arturo Guadalupi Date: Mon, 12 Jan 2015 14:37:50 +0100 Subject: [PATCH] Update setCursor.ino Changedfrom (thisRow, thisCol) to lcd.Setcursor(thisCol, thisRow). It was an error. --- examples/setCursor/setCursor.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/setCursor/setCursor.ino b/examples/setCursor/setCursor.ino index e45c491..951c8a5 100644 --- a/examples/setCursor/setCursor.ino +++ b/examples/setCursor/setCursor.ino @@ -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);