Hi,
For the learning example in arduino website LiquidCrystal library > setCursor
As I understand the syntax of lcd.setCursor is lcd.setCursor(col, row)
I think the descriptions above the code :
lcd.setCursor(0, 0); // top left
lcd.setCursor(0, 15); // top right
lcd.setCursor(1, 0); // bottom left
lcd.setCursor(0, 15); // top right
should be
lcd.setCursor(0, 0); // top left
lcd.setCursor(
15, 0); // top right
lcd.setCursor(
0, 1); // bottom left
lcd.setCursor(
15, 1); // top right

So the example code works fine( at least on my lcd module), but be aware that in lines 55 to 62 :
variable
thisRow is actually referring to the column
variable
thisCol is actually referring to the row
I tried this on arduino 0017
Cheers