Sei sulla pagina 1di 2

LIAQUAT UNIVERSITY OF MEDICAL HEALTH & SCIENCES JAMSHORO

INSTITUTE OF BIO MEDICAL TECHNOLOGY BS IN BIO-MEDICAL Engineering (5th Term 3rd Year) _________ Batch LAB. EXPERIMENT # 4
Name: _________________________________________________________ Roll No. _____________ Score: ________________________ Signature of Teacher: __________________ Date: ____________

PERFORMANCE OBJECTIVE: To become familiar with using LCD through Arduino EQUIPMENT REQUIRED: Arduino Board and its software, Hardwires, LCD and Bread board INTRODUCTION:

The LiquidCrystal library allows you to control LCD displays that are compatible with the Hitachi HD44780 driver. There are many of them out there, and you can usually tell them by the 16-pin interface.

CIRCUIT CONNECTIONS:
Before wiring the LCD screen to your Arduino we suggest to solder a pin header strip to the 14 (or 16) pin count connector of the LCD screen, as you can see in the image above. To wire your LCD screen to your Arduino, connect the following pins:

LCD RS pin to digital pin 12 LCD Enable pin to digital pin 11 LCD D4 pin to digital pin 5 LCD D5 pin to digital pin 4 LCD D6 pin to digital pin 3 LCD D7 pin to digital pin 2 Additionally, wire a 10K pot to +5V and GND, with it's wiper (output) to LCD screens VO pin (pin3).

PROGRAM: This will display a simple TEXT on LCD #include <LiquidCrystal.h> // initialize the library with the numbers of the interface pins LiquidCrystal lcd(7, 6, 5, 4, 3, 2); void setup() { // set up the LCD's number of columns and rows: lcd.begin(16, 2); // Print a message to the LCD. lcd.print("HUMANOID ROBOT!"); } void loop() { // Turn off the display: lcd.noDisplay(); delay(500); // Turn on the display: lcd.display(); delay (500); }

TASK : DISPLAY YOU NAME AND ROLL NUMBER ON LCD THROUGH ARDUINO AND ATTACH THE PICTURES WITH THIS HAND OUT.

Potrebbero piacerti anche