lcd_gotoXY

Name

lcd_gotoXY -- moves the insertion point

Synopsis

void lcd_gotoXY(int8 x, int8 y);

Description

This function moves the LCD insert point to a specific character cell. The cells are numbered as follows:

Example 1. LCD character positions

           Y
        X  0  1  2  3  4  5  6  7  8  9 .. 
           1
           2
           3
           ..

Thus, to move the insert point to the final cell of the bottom row, use

lcd_gotoXY(1,40);