User manual

mikroPascal PRO for PIC32
MikroElektronika
497
HW Connection
SPI T6963C Glcd HW connection
SPI_T6963C_PartialImage(0, 0, 128, 128, 240, 128, @mikroE_240x128_bmp);
Delay_ms(1500);
SPI_T6963C_PartialImage(0, 0, 240, 128, 240, 128, @mikroE_240x128_bmp);
Delay_ms(1500);
SPI_T6963C_txtFill(0);
SPI_T6963C_write_text(txt, 0, 0, @mikroE_240x128_bmp);
SPI_T6963C_write_text(txt1, 0, 15, @mikroE_240x128_bmp);
end;
{$ENDIF}
{*
* Move cursor, even if not visible
*}
Inc(cposx);
if (cposx = SPI_T6963C_txtCols) then
begin
cposx := 0;
Inc(cposy);
if (cposy = SPI_T6963C_grHeight / SPI_T6963C_CHARACTER_HEIGHT) then
cposy := 0;
end;
SPI_T6963C_set_cursor(cposx, cposy);
Delay_ms(100);
end;
end.