User manual

65
for(i=0; i<16; i++) { // Move text to the left 16 times
Lcd_Cmd(_LCD_SHIFT_LEFT);
delay_ms(80);
}
Lcd_Cmd(_LCD_CLEAR);
}
void displayLCD(int y)
{ char txt[7];
IntToStr(y,txt);
Lcd_Cmd(_LCD_CLEAR);
Lcd_Out(1,1,"Count:");
Lcd_Out(1,11,txt);
Lcd_Out(2,11,"per 30");
}