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

PDF
PPT
Land and sea breeze
PDF
PDF
Home security system
PPTX
Temperature based fan speed control & monitoring using
PPT
BIO-VISION'S MULTIMEDIA CLASS - Charles law
PPTX
Liquid Crystal Display (LCD)
Land and sea breeze
Home security system
Temperature based fan speed control & monitoring using
BIO-VISION'S MULTIMEDIA CLASS - Charles law
Liquid Crystal Display (LCD)

What's hot (20)

PDF
Arduino- Serial communication
PDF
Introduction to Arduino Programming
PPTX
Arduino course
PDF
Arduino Workshop Day 1 - Basic Arduino
PPTX
Flip flops, counters &amp; registers
PPTX
Digital electronics logic families
PPTX
DIGITAL MULTIMETER PPT
PPTX
Seven Segment Display
PPTX
Arduino Microcontroller
PPT
Intro to Arduino
PDF
PPTX
Combinational circuits
PPTX
Introduction to Arduino
PPTX
Arduino Introduction (Blinking LED) Presentation (workshop #5)
PPTX
decade counter
PPTX
8051 Microcontroller ppt
PPTX
PCB Design and Fabrication
PPTX
Arduino for beginners- Introduction to Arduino (presentation) - codewithgauri
PPTX
Ardui no
PDF
IR proximity sensor report file.
Arduino- Serial communication
Introduction to Arduino Programming
Arduino course
Arduino Workshop Day 1 - Basic Arduino
Flip flops, counters &amp; registers
Digital electronics logic families
DIGITAL MULTIMETER PPT
Seven Segment Display
Arduino Microcontroller
Intro to Arduino
Combinational circuits
Introduction to Arduino
Arduino Introduction (Blinking LED) Presentation (workshop #5)
decade counter
8051 Microcontroller ppt
PCB Design and Fabrication
Arduino for beginners- Introduction to Arduino (presentation) - codewithgauri
Ardui no
IR proximity sensor report file.
Ad

Viewers also liked (10)

PPTX
Interfacing bluetooth with arduino
PPTX
Arduino uno lcd display 16x2
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
Arduino uno lcd display 16x2
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 (6)

PPTX
push button with led matrix
PPTX
Integrated development environment
PPTX
Introduction to arduino!
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)

PPT
Module_1_Lecture_1_Introduction_To_Automation_In_Production_Systems2023.ppt
PPTX
MODULE 3 SUSTAINABLE DEVELOPMENT GOALSPPT.pptx
PDF
ITEC 1010 - Networks and Cloud Computing
PPT
Unit - I.lathemachnespct=ificationsand ppt
PDF
Introduction to Machine Learning -Basic concepts,Models and Description
PDF
B461227.pdf American Journal of Multidisciplinary Research and Review
PPTX
Hardware, SLAM tracking,Privacy and AR Cloud Data.
PPTX
L1111-Important Microbial Mechanisms.pptx
PPT
Basics Of Pump types, Details, and working principles.
PPTX
MODULE 02 - CLOUD COMPUTING-Virtual Machines and Virtualization of Clusters a...
PPTX
INTERNET OF THINGS - EMBEDDED SYSTEMS AND INTERNET OF THINGS
PDF
BTCVPE506F_Module 1 History & Theories of Town Planning.pdf
PDF
IAE-V2500 Engine for Airbus Family 319/320
PDF
IAE-V2500 Engine Airbus Family A319/320
PPTX
Software-Development-Life-Cycle-SDLC.pptx
PDF
ST MNCWANGO P2 WIL (MEPR302) FINAL REPORT.pdf
PDF
25AF1191PC303 MODULE-1 CHAIN SURVEYING SEMESTER III SURVEYING
PDF
PhD defense presentation in field of Computer Science
PDF
Performance, energy consumption and costs: a comparative analysis of automati...
PDF
1.-fincantieri-investor-presentation2.pdf
Module_1_Lecture_1_Introduction_To_Automation_In_Production_Systems2023.ppt
MODULE 3 SUSTAINABLE DEVELOPMENT GOALSPPT.pptx
ITEC 1010 - Networks and Cloud Computing
Unit - I.lathemachnespct=ificationsand ppt
Introduction to Machine Learning -Basic concepts,Models and Description
B461227.pdf American Journal of Multidisciplinary Research and Review
Hardware, SLAM tracking,Privacy and AR Cloud Data.
L1111-Important Microbial Mechanisms.pptx
Basics Of Pump types, Details, and working principles.
MODULE 02 - CLOUD COMPUTING-Virtual Machines and Virtualization of Clusters a...
INTERNET OF THINGS - EMBEDDED SYSTEMS AND INTERNET OF THINGS
BTCVPE506F_Module 1 History & Theories of Town Planning.pdf
IAE-V2500 Engine for Airbus Family 319/320
IAE-V2500 Engine Airbus Family A319/320
Software-Development-Life-Cycle-SDLC.pptx
ST MNCWANGO P2 WIL (MEPR302) FINAL REPORT.pdf
25AF1191PC303 MODULE-1 CHAIN SURVEYING SEMESTER III SURVEYING
PhD defense presentation in field of Computer Science
Performance, energy consumption and costs: a comparative analysis of automati...
1.-fincantieri-investor-presentation2.pdf

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 }