LCD Display

 


Material required-:

  1. Arduino Uno 
  2. Jumper wires
  3. LCD Display (16*2)
  4. 1k resistor
  5. Breadboard 

                              
This is a project in which you will learn how to control LCD display using Arduino .You just have to simply connect the LCD display (16*2) with Arduino Uno .I hope you will enjoy this ,If you want me to make a post on your idea /project just let me know in the comment section or mail me .

HAPPY LEARNING!

                                       Connections

VSS   pin  to  GND
VDD/VCC  pin to +5volt
VO   pin through  1k resistor to  ground
RS    pin to  Digital pin(12)
RW   pin to  GND
E      pin to   Digital pin(11) 
D4    pin to  Digital pin(5)
D5    pin to  Digital pin(4)
D6    pin to  Digital pin(3)
D7    pin to  Digital pin(2)
A      pin to  +5volt
K      pin to  GND


                                     Arduino code


#include<LiquidCrystal.h>
LiquidCrystal lcd (12,11,5,4,3,2);


void setup() {


Serial.begin(9600); 
analogWrite(6,contrast);
lcd.begin(16,2);


}

void loop() {
 

  
lcd.setCursor(0,0);//(column,row)
lcd.print("hey! ");

lcd.setCursor(5,1);//(column,row)
lcd.print("there");

delay(2000);


For any queries contact me on  -:tombriddle28@gmail.com

YouTube Channel-: Omnific{If this post helps you please do subscribe my               
            YouTube channel too ,It's only a click for you but it means a lot to me.}

Comments

Popular posts from this blog

Automatic Water Pumping System

Wireless Communication Between Two Arduino Board Using HC-05 Module

Interfacing "Bluetooth Module" with Arduino Uno