Skip to main content

social

pop

Interfacing a 16X4 LCD

Interfacing 16X4 LCD

Simulation is done with Proteus ISIS
code: MikroC
Requirements:
  • 16X4 LCD
  • PIC16F877A
  • 8 MHz oscillator
  • A variable resistor (5k)
  • 22pF capacitor
  • A resistor (10k)

Circuit Diagram of 16X4 LCD and code is shown below


interfacing 16x4 LCD

 // Begin LCD configuration
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 txt1[]="welcome to 16x4"; char txt2[]="LCD display";
  char txt3[]="by"; char txt4[]="EKETECH";

TRISB=0X00;   // Configure PORTB as output
PORTB=0X00;        // initialise PORTB
while(1)                           // loop
{
lcd_Init();                        //  initialise LCD
lcd_cmd(_lcd_clear);          //  clear LCD
lcd_cmd(_lcd_cursor_off); //OFF the cursor
delay_ms(100);           // delay for 0.1 second
lcd_out(1,1,txt1);               // display "welcome to 16x4" on row 1 of LCD
lcd_out(2,3,txt2);              // display "LCD display"; on row 2 column 3
delay_ms(200);             // delay for 0.2 second
lcd_out(3,4,txt3);        // display "by" on row 3 column 4 of LCD
delay_ms(200);          // delay for 0.2 second
lcd_out(4,1,txt4);                 // display "EKETECH"; on row 4 column 1
delay_ms(1500);                    // delay for 1.5 seconds

}
}

Click hereVideo

By EKETECH

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...

WHAT IS A MULTIPLEXER?

  MULTIPLEXER we are going to see more complex combinational logic circuits or combinational devices which are the multiplexer and demultiplexer. These devices are can be found as integrated circuits (ICs) and are widely used in the field of telecommunication like in multiplexing. WHAT IS A MULTIPLEXER? A multiplexer also called data selector is a device that selects one of many input signals and forwards the selected input to the output. A multiplexer of 2 n inputs has n select bits, which are used to select which input line to send to the output.   See figure 1. An electronic multiplexer makes it possible for several signals to share one device or resource like one communication line instead of having one device per input signal. An example can be in a cyber where many computers are connected to the same printer, another example is an mp3 player, laptop, digital cable TV connected to a single surrounding sound system through a Mux.