Display Devices 16 x 2 lcd display.

Slides:



Advertisements
Similar presentations
Using Microsoft Office Excel 2007
Advertisements

Chapter 7. Copyright 2003, Paradigm Publishing Inc. CHAPTER 7 BACKNEXTEND 7-2 LINKS TO OBJECTIVES Set tabs on Ruler Set tabs at Tabs Dialog Box Set tabs.
Screen Display Module M15.2 Sections 9.5, 13.1, 13.2.
Embedded Programming and Robotics Lesson 9 Keypad and LCD Display 1.
Eejit’s guide to using a LCD alphanumeric display with the CCS C compiler 1.Hardware connection 2.The LCD.C include file 3.An example.
Teachers Name : Suman Sarker Telecommunication Technology Subject Name : Microcontroller & Embedded System Subject Code : 6871 Semester : 7th Department.
16x2 LCD Module on DE2-115 數位電路實驗 TA: 吳柏辰 Author: Trumen.
LCD's 1. LCD Types Many types available. Most common are:  Character Pre-programmed with a set of alphanumeric characters & symbols Size range from 8×1.
An Overview of the GAP Assessment Tool. Brief Description of the Tool  It is based on ISO  The assessment provides a checklist for an review of.
Overview What kind of LCD Interfacing the LCD Displaying Text and Numbers Common Issues.
Digital Outputs LCD Display
Muhammad Asad University of Engineering and Technology(UET), Taxila, Pakistan ITC Lab 05.
Lecture 1 Saima Gul. What is a Project? A Project is a job that has a beginning and an end (time), a specified outcome ( scope) at a stated level of quality.
Know Your Computer By Jesus Vargas Day 1. Monitor.
Basic Computer Vocabulary. Browser -- Software used to navigate the Internet. BOLD -- A style of text that makes a letter or word darker and thicker to.
LCD Interfacing.
UniMAP 1 Interfacing Peripherals. UniMAP 2 Interfacing devices on Embedded Linux In general, to interface to a device connected to an embedded Linux platform.
ICT 111 – PART 2 APPLICATIONS SOFTWARE /11: APPLICATIONS SOFTWARE Remember: Computer hardware VS human body Computer operating systems VS human.
COMPUTER APPLICATIONS COURSE LEARN HOW TO USE COMPUTERS.
Excel Spreadsheet Notes. What is a Spreadsheet? Columns and rows of data.
Department of Electronic & Electrical Engineering LCD character display (parallel interface). How to interface a LCD character display to a PIC.
Computer Vocabulary Computer
Command Prompt Chapter 9 Pipes, Filters, and Redirection ©Richard Goldman 11/30/2000 Revised 10/16/2001.
1. 2 Living Spaces 3 4 template
Vishwakarma government engineering college Prepare by. Hardik Jolapara( ) LCD Interfacing with ATmega16.
A.D.Patel institute of technology Sub : LCD and Keyboard interfacing with AVR. prepared by, chokshi abhi p ( ) Guided by, Prof. Asif Thakor.
Sitarambhai Naranjibhai Patel Institute of Technology and Research Centre, Umrakh, Bardoli. A Presentation On “ 16x2 LCD Interfacing with AVR atmega32.
LCD AND LCD INTERFACING. INDEX:-  INTRODUCTION  PIN DISCRIPTION  INITIALIZATION OF LCD  LCD INTERFACING  LCD INTERFACING WITH ATMEGA 32  INTERFACING.
QWERTYUIOP ?. Parts & Layout of the 1. Main Keypad 2. Functions Keys 3. Modifier Keys 4. Legacy keys 5. Navigation Keys 6. Numeric Keypad 7. Indicator.
CS:414 introduction to Unix and Linux
Using a SparkFun™ serial LCD with an Arduino
Chapter 11 Working with Spreadsheets
Scrolling LCD using Arduino.
Lab 2: Arduino Sensors Topics: Arduino Sensor Reading, Display
LCD Interfacing using Atmega 32
Basic Computer Vocabulary
International Computer Driving Licence Syllabus version 5.0
CS4101 Introduction to Embedded Systems Lab 10: Tasks and Scheduling
LCD and Keyboard Interfacing
Microsoft Word 2010.
UNIVERSAL COLLEGE OF ENGINEERING & TECHNOLOGY
GANDHINAGAR INSTITUTE OF TECHNOLOGY
BASIC SKILLS USING EXCEL
Spreadsheet/Worksheet/ Excel
Display Devices 7 segment led display.
Liquid Crystal Display Arduino
OBJECTIVE AND FEATURES:
Microsoft Excel A Spreadsheet Program.
MS-Excel Part 1.
Vi Editor.
Word 2002 Chapter 7 MANIPULATING TABS.
Microsoft Office Illustrated
EET 2261 Unit 11 Controlling LCD and Keypad
Introduction to MS-DOS
Chapter I Introduction to MS Excel Program
LCD and Keyboard Interfacing
EET 2261 Unit 11 Controlling LCD and Keypad
Who Wants to be a Clicker Millionaire?
LCD and Keyboard Interfacing
Exploring Microsoft Excel
Software Environment ISE 5.x Interaction with simple LCDs
LCD and Keyboard Interfacing
LCD and Keyboard Sepehr Naimi
LCD and Keyboard Interfacing
CTY SAR FCPS Shawn Lupoli, Elliot Tan
LCD (LIQUID CRISTAL DISPLAY) SCREENS
Output Manipulation.
Microsoft Excel 2007 – Level 2
TERMS AND CONDITIONS   These PowerPoint slides are a tool for lecturers, and as such: YOU MAY add content to the slides, delete content from the slides,
TERMS AND CONDITIONS   These PowerPoint slides are a tool for lecturers, and as such: YOU MAY add content to the slides, delete content from the slides,
Presentation transcript:

Display Devices 16 x 2 lcd display

2x16 Characters LCD Display It is a display device used in Embedded system to display information It contains 32 character space on screen arranged in 16 columns and 2 rows

Pin out of LCD Display Pin Description Pin 1 Ground Pin 2 VCC (+5) Pin 3 Contrast Voltage Pin 4 Data/Command (R/S) Pin 5 Read/Write (W) Pin 6 Enable (E1) Pin 7 D0 (Not Used) Pin 8 D1 (Not Used)

Contd.... Pin 9 D2 (Not Used) Pin 10 D3 (Not Used) Pin 11 D4 Pin 12 D5 Pin 13 D6 Pin 14 D7 Pin 15 LED+ Pin 16 LED-

Character Chart

Manual Data Entering

Command Chart

Interfacing with ATMega8

Header files lcd.c lcd.c file contains lcd related functions to manipulate data on LCD lcd.h lcd.h contains LCD related macros, function signatures and settings for LCD Display #include"lcd.h" //include lcd.h #include"lcd.c" //include lcd.c Include both files in your project and paste both lcd.c and lcd.h in the same folder where your .c file resides

LCD Commands lcd_init(LCD_DISP_ON) This function is used to initialize LCD Module with some default setting This function with above argument will Start the display, clear it and put cursor on (0,0) location See lcd.h file for more macro

Conti…. lcd_clrscr() This function will clear the Display and position the cursor on (0,0) location. lcd_puts(“Hello") This function will print Hello on the screen of LCD at current cursor location. After clearing the screen, current cursor location would be (0,0). lcd_gotoxy(column, row) This function is used to set the current cursor location on the LCD. Display will always print the text/data at current cursor location. You can set the current cursor location any time in programming.

Conti… lcd_command(Macro_for_Command) Using this function you can execute commands of LCD module LCD_MOVE_DISP_LEFT this is the command for shifting the display to left hand side You need to execute this command 16 times to shift all current text on the screen

Thank You!!!