Complete the code to set the cursor to the first column and first row on the LCD.
lcd.setCursor([1], 0);
The first column on the LCD is column 0, so we use 0 as the first argument in setCursor.
Complete the code to move the cursor to the third column on the second row.
lcd.setCursor([1], 1);
Columns are zero-indexed, so the first column is 0, the second is 1, and the third column is 2.
Fix the error in the code to correctly position the cursor at column 4, row 0.
lcd.setCursor(4, [1]);
The first row is row 0, so the second argument to setCursor should be 0.
Fill both blanks to set the cursor to the last column on the last row of a 16x2 LCD.
lcd.setCursor([1], [2]);
For a 16x2 LCD, columns go from 0 to 15, so last column is 15. Rows go from 0 to 1, so last row is 1.
Fill all three blanks to set the cursor to column 0, row 1, and then print 'Hello'.
lcd.setCursor([1], [2]); lcd.print([3]);
Column 0 and row 1 set the cursor to the first column of the second row. Then printing "Hello" displays the text there.
