User manual

530
mikoBasic PRO for PIC32
MikroElektronika
T6963C_displayGrPanel(1)
T6963C_write_text(txt2, 5, 15, T6963C_ROM_MODE_XOR)
Delay_1sec()
T6963C_grFill(0)
T6963C_PartialImage(0, 0, 64, 64, 240, 128, @mikroE_240x128_bmp)
Delay_ms(1500)
T6963C_PartialImage(0, 0, 128, 128, 240, 128, @mikroE_240x128_bmp)
Delay_ms(1500)
T6963C_PartialImage(0, 0, 240, 128, 240, 128, @mikroE_240x128_bmp)
Delay_ms(1500)
T6963C_txtFill(0)
T6963C_write_text(txt, 0, 0, T6963C_ROM_MODE_XOR)
T6963C_write_text(txt1, 0, 15, T6963C_ROM_MODE_XOR)
end if
#ENDIF
end if
end if
end if
end if
‘*
‘ * Move cursor, even if not visible
‘*
Inc(cposx)
if (cposx = T6963C_txtCols) then
cposx = 0
Inc(cposy)
if (cposy = T6963C_grHeight div T6963C_CHARACTER_HEIGHT) then
cposy = 0
end if
end if
T6963C_set_cursor(cposx, cposy)
Delay_ms(100)
wend
end.