User manual

587
mikoPascal PRO for dsPIC30/33 and PIC24
MikroElektronika
HW Connection
T6963C Glcd HW connection
T6963C_cursor_blink(1);
end;
2: begin
// non blinking cursor
T6963C_cursor(1);
T6963C_cursor_blink(0);
end;
end;
Delay_ms(300);
end;
{*
* Move cursor, even if not visible
*}
Inc(cposx);
if (cposx = T6963C_txtCols) then
begin
cposx := 0;
Inc(cposy);
if (cposy = T6963C_grHeight div T6963C_CHARACTER_HEIGHT) then
cposy := 0;
end;
T6963C_set_cursor(cposx, cposy);
Delay_ms(100);
end;
end.