User manual

565
mikoPascal PRO for dsPIC30/33 and PIC24
MikroElektronika
HW Connection
SPI T6963C Glcd HW connection
* Move cursor, even if not visible
*}
Inc(cposx);
if (cposx = SPI_T6963C_txtCols) then
begin
cposx := 0;
Inc(cposy);
if (cposy = SPI_T6963C_grHeight div SPI_T6963C_CHARACTER_HEIGHT) then
cposy := 0;
end;
SPI_T6963C_set_cursor(cposx, cposy);
Delay_ms(100);
end;
end.