User manual
378
mikoPascal PRO for dsPIC30/33 and PIC24
MikroElektronika
// Moving text
for i:=0 to 3 do // Move text to the right 4 times
begin
Lcd_Cmd(_LCD_SHIFT_RIGHT);
Move_Delay();
end;
while TRUE do // Endless loop
begin
for i:=0 to 6 do // Move text to the left 7 times
begin
Lcd_Cmd(_LCD_SHIFT_LEFT);
Move_Delay();
end;
for i:=0 to 6 do // Move text to the right 7 times
begin
Lcd_Cmd(_LCD_SHIFT_RIGHT);
Move_Delay();
end;
end;
end.
Lcd HW connection