internetuser2k12
Banned
To do that you dont need a serial LCD. You receive data through UART or SPI and convert it to char and send it to LCD using parallel 4 bit or 8 bit mode.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
// LCD module connections
sbit LCD_RS at RB2_bit;
sbit LCD_EN at RB3_bit;
sbit LCD_D4 at RB4_bit;
sbit LCD_D5 at RB5_bit;
sbit LCD_D6 at RB6_bit;
sbit LCD_D7 at RB7_bit;
sbit LCD_RS_Direction at TRISB2_bit;
sbit LCD_EN_Direction at TRISB3_bit;
sbit LCD_D4_Direction at TRISB4_bit;
sbit LCD_D5_Direction at TRISB5_bit;
sbit LCD_D6_Direction at TRISB6_bit;
sbit LCD_D7_Direction at TRISB7_bit;
// End LCD module connections
void main() {
unsigned char i;
unsigned char Rev;
LCD_Init();
LCD_Cmd(_LCD_CLEAR);
LCD_Cmd(_LCD_CURSOR_OFF);
PORTC = 0;
TRISC = 0x80;
UART1_Init(9600);
while(1){
if (UART1_Data_Ready){
Rev = UART1_Read();
i++;
if (i > 15){
i = 0;
LCD_Cmd(_LCD_CLEAR);
}
Lcd_Chr_CP(Rev);
delay_ms(100);
}
}
}
I visited your blogs your projects are great and knowledgable.Did you learn Microcontrollers by any teacher or by self-study.I want to study microcontrollers in depth and make projects.
If i want to made InfraRed signal transmitter so what is the carrier frequency and how to perform modulation by PIC12F683.
Is it possible by PIC12F683?