Interface LCD (16X2) To Arduino: Step 1: Hardware Connections
Interface LCD (16X2) To Arduino: Step 1: Hardware Connections
This instructables explains you regarding interfacing LCD(Liquid Crystal Dispaly ) 16X2 to arduino.
LCD is available in a 16 pin package with back light ,contrast adjustment function and
each dot matrix has 58 dot resolution.
The JHD162A has two built in registers namely data register and command register.
Data register is for placing the data to be displayed , and the command register is to
place the commands.
2) Arduino
4) BreadBoard
Step 1: Hardware Connections
LCD (Liquid Crystal Display) Interfacing to Arduino
and Resistor 10k Pot
#include<LiquidCystal.h>
void setup()
lcd.print("TechPonder"); }
void loop()
{ // set the cursor to column 0, line 1 // (note: line 1 is the second row, since counting begins with 0):
lcd.setCursor(0, 0);
lcd.setCursor(0,1);