Skip to main content

social

pop

Interfacing 16x2 LCD with PIC microcontroller

Interfacing a 16X4 LCD

In this project, a 16X2 LCD is connected to PORTB of PIC 16F877A microcontroller and the microcontroller is operated from an 8MHz oscillator. The message to be displayed is "welcome to 16x2 LCD display".
A reset button is include to be able to reset the microcontroller.

The circuit is drawn using proteus software and the code below is written in mikroC PRO for PIC.

 Circuit diagram of a 16X2 LCD

interfacing LCD

MikroC code of 16X2 LCD display
 // begin configuration of LCD
sbit LCD_RS_direction at TRISB0_bit;
sbit LCD_EN_direction at TRISB1_bit;
sbit LCD_D4_direction at TRISB2_bit;
sbit LCD_D5_direction at TRISB3_bit;
sbit LCD_D6_direction at TRISB4_bit;
sbit LCD_D7_direction at TRISB5_bit;

sbit LCD_RS at RB0_bit;
sbit LCD_EN at RB1_bit;
sbit LCD_D4 at RB2_bit;
sbit LCD_D5 at RB3_bit;
sbit LCD_D6 at RB4_bit;
sbit LCD_D7 at RB5_bit;
// End of LCD configuration

void main() { char txt[]="welcome to 16x2"; char text[]="LCD display";

TRISB=0X00;                                  // Configure PORTB as output
PORTB=0X00;                                 // initialise PORTB
while(1)                                   // loop
{
lcd_Init();                              //  initialise LCD
lcd_cmd(_lcd_clear);                    //  clear the LCD
lcd_cmd(_lcd_cursor_off);              // put OFF the cursor on LCD
delay_ms(100);                        // delay for 0.1 second
lcd_out(1,1,txt);                    // display "welcome to 16x2" on row 1 of LCD
lcd_out(2,3,text);                 // display "LCD display"; on row 2 column 3
delay_ms(1500);                    // delay for 1.5 seconds

}
}


By EKETECH

Related:

Popular posts from this blog

How to Install Proteus 8 Professional: A Step-by-Step Guide

 How to Install Proteus 8 Professional: A Step-by-Step Guide Proteus 8 Professional is a powerful tool for electronic circuit design and simulation. Whether you’re a student, hobbyist, or professional engineer, following a clear installation process ensures you get started without headaches. Are you ready to start designing and simulating electronic circuits with Proteus 8 Professional!   Here’s a comprehensive, guide to installing Proteus 8 Professional on your Windows PC. Step 1: Download the Installer ·        Visit the official Labcenter Electronics website or another trusted source to download the Proteus 8 Professional installer. Avoid unofficial sources to prevent malware or corrupted files . You can download from HERE DOWNLOAD PROTEUS AND ARDUINO ·        The installer typically comes as a ZIP file. Wait for the download to finish and locate it in your Downloads folder Step 2: Extract the Installer...

Intermediate switch connection and wiring diagram

Intermediate switch An intermediate switch is a switch which permits the control of a lighting point from three positions. In order to control this lighting point from the three positions, the intermediate switch is connected together with two other 2-way switches. Application: it can be used in lighting a room or hall having 3 entrances , it can also be used in long corridors and staircases. We shall be looking at these connections. Connection diagram of intermediate switching Below is an illustration of the connection. The brown lines indicated on the diagram are the switching contacts. The switch labelled 2 is an intermediate switch . The figure below is the configuration of an intermediate switch. The switch labelled 1 and 3 in the first diagram are two-way switches.  Click here to know more about two-way switches . ON and OFF positions of intermediate switching ON positions OFF positions Staircase wiring layout using an inte...

GCE Syllabus and Scheme of work Cameroon technical and general schools

Syllabus Electrical Technology ( for Electrotechnics, Electronics and Air-conditioning), Mechanical ( Automobile, sheet metal ), civil engineering (plumbing, wood works, building and public works), tailoring General education is also available down In Cameroon, a syllabus  is a guideline defining the structure and the content of a course. Have you be searching for this? Your problem is solved Download is available at the bottom page The scheme of work is a guide used to monitor the progress of a course based on an original plan. Hence it can be viewed as interpretation of a syllabus.  Teachers use it as a harmonised guide in a particular territory like in Cameroon, in order to attain the same general and specific objectives all over the educational institutions. Speciality include: Electrotechnics Electronics  Air-conditioning Title of module (Subjects): Electricity/Electronics. Its is commonly called in Cameroon ELEC-ELO Technology and Electrical...