|
char;
void main() {
Lcd_Config(&PORTB, 4, 5, 6, 3, 2, 1, 0); // Lcd_Init_EP5, see Autocomplete
LCD_Cmd(LCD_CLEAR); // Clear display
LCD_Cmd(LCD_CURSOR_OFF); // Turn cursor off
LCD_Out(1,1,"abcdefg"); // Print text to LCD, 1st row, 1st column
Delay_ms(1000);
LCD_Out(2,6,"mikroE"); // Print text to LCD, 2nd row, 6th column
LCD_Out(3,1,"hklmnop");
LCD_Out(4,1,"RADIO AMATER UR5XCA");
Delay_ms(1000);
LCD_Cmd(LCD_CLEAR);
LCD_Cmd(LCD_CURSOR_OFF);
LCD_Out(5,2,"LIZUNOV KIRILL");
LCD_Out(6,1,"MY CALL UR5XCA");
LCD_Out(7,1,"123456");
Delay_ms(1000);
LCD_Cmd(LCD_CLEAR);
LCD_Cmd(LCD_CURSOR_OFF);
LCD_Out(1,2,"rstuw");
}
|