khushisahil36
Published © GPL3+

Arduino Tutorial - LCD Display

LCD (liquid crystal display) is the technology used for displays in smaller computers. LCDs allow displays to be much thinner than CRT.

BeginnerFull instructions provided17,937
Arduino Tutorial - LCD Display

Things used in this project

Story

Read more

Schematics

LCD Display

Code

LCD Display Code

Arduino
#include <LiquidCrystal.h>              //include the LiquidCrystal library

LiquidCrystal lcd(12, 10, 5, 4, 3, 2);  //define LCD pins (RS, E, D4, D5, D6, D7)

void setup() {
lcd.begin(16, 2);                       //initializes the LCD and specifies the dimensions
lcd.print(" Nuts and Bolts  "); 
lcd.setCursor(0, 1);
lcd.print("  LCD Tutorial ");
delay(5000);
lcd.clear();
lcd.print("Arduino Projects");
lcd.setCursor(0, 1);
lcd.print("Tutorials & Make");
delay(5000);
lcd.clear();
lcd.print("   SUBSCRIBE");
lcd.setCursor(0, 1);
lcd.print("FOR MORE VIDEOS");
delay(5000);
lcd.clear();

}

void loop() {
  lcd.begin(16, 2); 
lcd.print(" Nuts and Bolts  "); 
lcd.setCursor(0, 1);
lcd.print("  LCD Tutorial ");
delay(5000);
lcd.clear();
lcd.print("Arduino Projects");
lcd.setCursor(0, 1);
lcd.print("Tutorials & Make");
delay(5000);
lcd.clear();
lcd.print("   SUBSCRIBE");
lcd.setCursor(0, 1);
lcd.print("FOR MORE VIDEOS");
delay(5000);
lcd.clear();

}

Credits

khushisahil36

khushisahil36

3 projects • 13 followers

Comments