SlideShare a Scribd company logo
2
Most read
3
Most read
4
Most read
LCD DISPLAY
 A Liquid Crystal Display commonly abbreviated as LCD is
basically a display unit built using Liquid Crystal
technology.
 Used for displaying of data
 Most widely used for arduino interfacing is 16*2 lcd
display
Arduino lcd display
Arduino lcd display
PROGRAM CODE :
#include<LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2); // sets the interfacing pins
void setup()
{
lcd.begin(16, 2); // initializes the 16x2 LCD
}
void loop()
{
lcd.setCursor(0,0); //sets the cursor at row 0 column 0
lcd.print("16x2 LCD MODULE"); // prints 16x2 LCD MODULE
lcd.setCursor(0,1); //sets the cursor at row 1 column 0
lcd.print("HELLO WORLD"); // prints HELLO WORLD
}

More Related Content

PPTX
Liquid Crystal Display (LCD)
PDF
PDF
Arduino Workshop Day 1 - Basic Arduino
PDF
Arduino Workshop Day 2 - Advance Arduino & DIY
PDF
Security in Cyber-Physical Systems
PDF
HG G10 Q1 Module 1.pdf
PPTX
Introduction to embedded systems
Liquid Crystal Display (LCD)
Arduino Workshop Day 1 - Basic Arduino
Arduino Workshop Day 2 - Advance Arduino & DIY
Security in Cyber-Physical Systems
HG G10 Q1 Module 1.pdf
Introduction to embedded systems

What's hot (20)

PPTX
Ardui no
PPTX
Introduction to Arduino
PPTX
Arduino radar system
PPT
Microprocessors and microcontrollers
PPTX
Arduino Workshop
PPTX
Arduino uno lcd display 16x2
PPT
Arduino
PPT
Intro to Arduino
PPTX
Introduction to the Arduino
PPTX
Introduction to Node MCU
PPTX
Introduction to Arduino Hardware and Programming
PPTX
Arduino Radar System
PDF
Introducing the Arduino
PPTX
Raspberry Pi (Introduction)
PPT
integrated circuits
PPTX
PPT ON Arduino
PPS
Arduino Uno Pin Description
PDF
Arduino IDE
PPTX
Introduction to arduino ppt main
Ardui no
Introduction to Arduino
Arduino radar system
Microprocessors and microcontrollers
Arduino Workshop
Arduino uno lcd display 16x2
Arduino
Intro to Arduino
Introduction to the Arduino
Introduction to Node MCU
Introduction to Arduino Hardware and Programming
Arduino Radar System
Introducing the Arduino
Raspberry Pi (Introduction)
integrated circuits
PPT ON Arduino
Arduino Uno Pin Description
Arduino IDE
Introduction to arduino ppt main
Ad

Viewers also liked (9)

PPTX
Interfacing bluetooth with arduino
PPTX
Lcd with arduino uno
PPTX
PPT
Interfacing keypad
PDF
Bluetooth Module HC-06
PDF
Bluetooth Module
PPT
Interfacing LCD with 8051 Microcontroller
PDF
LinkedIn SlideShare: Knowledge, Well-Presented
PPTX
Top 5 Deep Learning and AI Stories - October 6, 2017
Interfacing bluetooth with arduino
Lcd with arduino uno
Interfacing keypad
Bluetooth Module HC-06
Bluetooth Module
Interfacing LCD with 8051 Microcontroller
LinkedIn SlideShare: Knowledge, Well-Presented
Top 5 Deep Learning and AI Stories - October 6, 2017
Ad

More from Makers of India (7)

PPTX
push button with led matrix
PPTX
Integrated development environment
PPTX
Introduction to arduino!
PDF
PPTX
Programming with arduino
PPTX
Led fade
push button with led matrix
Integrated development environment
Introduction to arduino!
Programming with arduino
Led fade

Recently uploaded (20)

PPTX
Geodesy 1.pptx...............................................
PPTX
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
PPTX
Foundation to blockchain - A guide to Blockchain Tech
PDF
composite construction of structures.pdf
PPTX
Strings in CPP - Strings in C++ are sequences of characters used to store and...
DOCX
573137875-Attendance-Management-System-original
PPTX
UNIT-1 - COAL BASED THERMAL POWER PLANTS
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PPTX
ANIMAL INTERVENTION WARNING SYSTEM (4).pptx
PPT
Chapter 6 Design in software Engineeing.ppt
DOCX
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
PPTX
MET 305 MODULE 1 KTU 2019 SCHEME 25.pptx
PPTX
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
PPTX
Unit 5 BSP.pptxytrrftyyydfyujfttyczcgvcd
PPTX
Simulation of electric circuit laws using tinkercad.pptx
PDF
Model Code of Practice - Construction Work - 21102022 .pdf
PPTX
“Next-Gen AI: Trends Reshaping Our World”
PDF
Queuing formulas to evaluate throughputs and servers
PPTX
Road Safety tips for School Kids by a k maurya.pptx
PDF
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
Geodesy 1.pptx...............................................
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
Foundation to blockchain - A guide to Blockchain Tech
composite construction of structures.pdf
Strings in CPP - Strings in C++ are sequences of characters used to store and...
573137875-Attendance-Management-System-original
UNIT-1 - COAL BASED THERMAL POWER PLANTS
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
ANIMAL INTERVENTION WARNING SYSTEM (4).pptx
Chapter 6 Design in software Engineeing.ppt
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
MET 305 MODULE 1 KTU 2019 SCHEME 25.pptx
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
Unit 5 BSP.pptxytrrftyyydfyujfttyczcgvcd
Simulation of electric circuit laws using tinkercad.pptx
Model Code of Practice - Construction Work - 21102022 .pdf
“Next-Gen AI: Trends Reshaping Our World”
Queuing formulas to evaluate throughputs and servers
Road Safety tips for School Kids by a k maurya.pptx
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...

Arduino lcd display

  • 1. LCD DISPLAY  A Liquid Crystal Display commonly abbreviated as LCD is basically a display unit built using Liquid Crystal technology.  Used for displaying of data  Most widely used for arduino interfacing is 16*2 lcd display
  • 4. PROGRAM CODE : #include<LiquidCrystal.h> LiquidCrystal lcd(12, 11, 5, 4, 3, 2); // sets the interfacing pins void setup() { lcd.begin(16, 2); // initializes the 16x2 LCD } void loop() { lcd.setCursor(0,0); //sets the cursor at row 0 column 0 lcd.print("16x2 LCD MODULE"); // prints 16x2 LCD MODULE lcd.setCursor(0,1); //sets the cursor at row 1 column 0 lcd.print("HELLO WORLD"); // prints HELLO WORLD }