SBRDIYables
Published © LGPL

Working with LCD

This project demonstrates the working with LCD and Arduino.

BeginnerProtip720
Working with LCD

Things used in this project

Story

Read more

Schematics

Breadboard Diagram

Make Connections as shown in the figure

Code

Code for working with LCD

Arduino
Prints "HARE KRISHNA" on the first row and "HARE RAMA" on the second row.
#include <LiquidCrystal.h>

LiquidCrystal MyLCD (12, 11, 5, 4, 3, 2);

void setup()
{
  MyLCD.begin(16, 2);
  MyLCD.home();
  MyLCD.print ("HARE KRISHNA");
  MyLCD.setCursor(0,1);
  MyLCD.print ("HARE RAMA");
}

void loop ()
{
}

Credits

SBR
37 projects • 52 followers
Mechanical Engineer
DIYables
0 projects • 88 followers
I would like to invite you to join and add your projects to DIYables platform https://www.hackster.io/diyables

Comments