User manual
mikroPascal PRO for PIC32
MikroElektronika
467
Lcd HW connection by default initialization (using SPI_Lcd_Init)
while TRUE do // Endless loop
 begin
 for counter := 0 to 6 do // Move text to the left 7 times
 begin
 Spi_Lcd_Cmd(_LCD_SHIFT_LEFT);
 Move_Delay();
 end;
 for counter := 0 to 6 do // Move text to the right 7 times
 begin
 Spi_Lcd_Cmd(_LCD_SHIFT_RIGHT);
 Move_Delay();
  end;
 end;
 end.










