Result: The LCD 'x' Cycling Through All Cursor Positions Using the New GotoMrLCDsLocation(x,y) Function
Share
The result of the 'x' character cycling through all of the cursor locations using x and y coordinates rather than the 128 positions.
Structure: for () { for () { Code } } Example: for (int x = 0; x<3; x++) { for (int y = 0; y<3; y++) { //Print the x and y values } } If the values of x and y were printed, the output may look like this: 0, 0 0, 1 0, 2 1, 0 1, 1 1, 2 2, 0 2, 1 2, 2