Skip to main content

Project - 12 :- LCD Display By Using Arduino


                                     PROJECT – LCD 

In this tutorial you will learn how to use LCD with Arduino and display some text on the LCD.

                                                   STEP – 1 Components

Components Required:-
1.    Arduino Uno
2.    Breadboard
3.    LCD
4.    Wires.
5.    Resistance.

                                       STEP – 2: Circuit



                                        STEP – 3 : Code

#include<LiquidCrystal.h>

LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup()
{
 lcd.begin(16, 2);
}

void loop()
{
  lcd.setCursor(5,0);         
  lcd.print("Welcome To");
  lcd.print("Robotics Class");   

  }

       /* Copy above Code and Paste in Your Arduino Sketch */

    Step 4: Well Done!

You have successfully completed one more Arduino Project and you learned how to use a LCD Display with Arduino.

                  THANKYOU!


Next Project - 13 :- LED MATRIX By Using Arduino
Previous Project - 11 :- 7 Segment Display By Using Arduino

Comments

Popular posts from this blog

Project - 14 :- Traffic Light Using By Arduino

                                PROJECT – Traffic Light                        In this tutorial you will learn how to make Traffic Light with Arduino.                                                     STEP – 1 Components Components Required:- 1.     Arduino Uno 2.     Breadboard 3.     3  LED 4.     7 Segment 5.     3x 220Ohm resistors,1 1KOhm Wires .                                    ...

Project - 13 :- LED MATRIX By Using Arduino

                                PROJECT – LED MATRIX In this tutorial you will learn how to use LCD with Arduino and display some text on the LCD.                                                     STEP – 1 Components Components Required:- 1.      Arduino Uno 2.      Breadboard 3.      LED MATRIX 4.      Wires.                                          STEP – 2: Circuit The connections are pretty easy, see the image above with the b...

Project - 7 :- Clap Switch By Using Arduino

                                    PROJECT – CLAP SWITCH In this tutorial you will learn how to use a Sound Sensor with Arduino and glowing a LED and beeping a Buzzer by Clapping.                                                       STEP – 1: Components Components Required:- 1.     Arduino Uno. 2.     Breadboard. 3.     Sound Sensor. 4.     LED 5.     Buzzer 6.     Wires                   ...