Manish Kumar Yadav
Published

LCD interfacing with ARDUINO UNO

LCD interfacing using ARDUINO UNO. Here we will learn how to use LCD display with Arduino UNO.

IntermediateProtip3,649
LCD interfacing with ARDUINO UNO

Things used in this project

Story

Read more

Schematics

LCD interfacing with ARDUINO UNO

Code

LCD interfacing with ARDUINO UNO

Arduino
/* PROJECT BY MANISH KUMAR YADAV*/
#include<LiquidCrystal.h>
int rs=7;
int en=8;
int d4=9;
int d5=10;
int d6=11;
int d7=12;
int tm=1000;
int j;
LiquidCrystal lcd(rs,en,d4,d5,d6,d7);
void setup() {
 lcd.begin(16,2);                
}
void loop() {
lcd.setCursor(0,0);
lcd.print("LCD INTERFACING");
lcd.setCursor(0,1);
lcd.print(" USING ARDUINO");
}

Credits

Manish Kumar Yadav

Manish Kumar Yadav

11 projects • 12 followers
Highly skilled Electronics and Communication Engineer, adept Programmer, and creative PCB Designer.

Comments