Exemplo n.º 1
0
void hd44780_go_to(u8 row, u8 col) {
    hd44780_go_to_line(row);
    u8 i = 0;
    while (i++ < col)
        hd44780_cmd(HD44780_MOVE_CURSOR_RIGHT);
}
Exemplo n.º 2
0
void hd44780_go_to(u8 row, u8 col) {
    hd44780_go_to_line(row);
    u8 i = 0;
    while (i++ < col)
        hd44780_cmd(0x14);
}