User manual

mikroPascal PRO for dsPIC30/33 and PIC24
MikroElektronika
544
SPI Lcd8 HW connection
while TRUE do // Endless loop
begin
for counter := 0 to 6 do // Move text to the left 7 times
begin
Spi_Lcd8_Cmd(_LCD_SHIFT_LEFT);
Move_Delay();
end;
for counter := 0 to 6 do // Move text to the right 7 times
begin
Spi_Lcd8_Cmd(_LCD_SHIFT_RIGHT);
Move_Delay();
end;
end;
end.