Skip to main content

social

pop

Interfacing LCD: Display and scroll text on LCD

Display and scroll text on LCD

In this tutorial we are going to show you how to display a message on an LCD and make the text scroll.
we require the following components:
  • An LCD (16X2)
  • PIC Microcontroller (PIC16F877A)
  • 8 MHz oscillator
  • 22pF capacitor
  • A resistor (10k)
  • A variable resistor (5k)
The circuit designed using proteus
Interfacing LCD

Interfacing LCD with PIC microcontroller

Scrolling LCD text

The code (command given to the microcontroller) is programmed with miKro C.
The code is shown below
// 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 LCD"; char text[]="display by EKETECH";   char i;

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 LCD cursor
delay_ms(200);                  // delay 0.2 seconds
lcd_out(1,2,txt); // display "welcome to LCD"                                                     on row 1 of LCD
delay_ms(200);             // delay for 0.2 second
lcd_out(2,1,text);         // display "display by                                               EKETECH"; on row 2
delay_ms(700);           // delay for 0.7 seconds
for(i=0; i<16;i++){         //repeat command 15                                                                       times
lcd_cmd(_lcd_shift_left);  // shift lcd display                                                      once by the left
delay_ms(100); }      //  delay for 0.1 second

}
}


DOWNLOAD Complete file Here
( circuit + code)

was this interesting? leave your comments below and please subscribe to get updates directly into your inbox.

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

Download HND Past Questions and Solutions

Download Cameroon HND Past Questions & Solutions Boost your exam prep with past papers and answers across all fields! How to Access Past Questions Visit the Cameroon HND Platform or trusted sites like EKETECH . Browse by field : Select your program (e.g., Civil Engineering , Banking and Finance , Nursing ). Download PDFs for free or via subscription. Practice with solutions : Review answers to refine your understanding. Fields of Study Covered Past questions are available for all HND programs in Cameroon, including: Engineering Civil Engineering Design Software Engineering Electrical Power Systems Telecommunication Mechanical Engineering Computer Engineering Medical Sciences Nursing Medical Laboratory Studies Health Care Management Physiotherapy Nutrition and Dietetics Agriculture Agribusiness Management Agricultural Engineering Food Technology Integrated Agriculture Business Accounting Banking and...

GCE QUESTIONS AND SOLUTIONS FOR ELECTRICAL POWER SYSTEMS

 DOWNLOAD GCE PAST QUESTIONS AND SOLUTIONS FOR EPS POWER ELECTRONICS  Download 1     Download 1b Download 2     Download 2b      Download 2C Download 3 AUTOMATIC CONTROL OF ELECTRICAL MACHINES Download 1 Download 2 Download 3      Download 3b Download 4      Download 4b    2020 DESIGN OF ELECTRICAL INSTALLATION Download 1 Download 2 Download 3      Download 3b      Download 3C      Download 3D CIRCUIT ANALYSIS Download 1 Download 2 Download 3 Download 4 ENGINEERING SCIENCE Download 1 2019 Download 2 2023 paper 1 Download 3   MOCK      Download 3B  Download 4         Download 5          Download 6 Download 7   ITV ELECTRICAL AND ELECTRONIC CIRCUIT  Download 1 ELECTRICAL DIAGRAM Download 1   CAP ELECTRICAL TECHNOLOGY AND DIAGRAM Download 1 Download 2   ITV...