lcd_locate

Moves current cursor position

void lcd_locate (
    uint8_t row,    /* Row */
    uint8_t col     /* Column */
);

Arguments

row
Specifies the row position in range of 0 to _LCD_ROWS - 1.
col
Specifies the column position in range of 0 to _LCD_COLS - 1.

Return