Starting from:

$30

ECE383- Microcomputers – Lab 7 LCD Interfacing with a PIC24  Solved


 
Goals: The goals of this lab are to introduce students to LCD interfacing with the PIC24. 
 
1.    Introduction 
 
Liquid Crystal Displays (LCD) have tremendous popularity among developers and consumers. These devices have been used in a wide variety of electronic products. Versatility and low power consumption are among the most attractive features of LCDs. Industry standard LCDs are controlled by Hitachi’s HD44780 chips. These chips allow output and input of character information to and from the LCD displays. In this lab you will: 
 
•    Interface a PIC24 microcontroller to a 16x2 (16 characters by 2 lines) LCD via a 4-bit interface 
•    Output text to LCD 
 
Read through the entire lab and scan any supplied files before starting work. The reporting requirements have you verify operations performed by the PIC24 system and corresponding C programs. 
 
2.    Prelab 
 
For this lab assignment, all programs should be completed as a pre-lab assignment prior to your assigned lab time. It is also highly recommended that you complete wiring of the system prior to the lab time. Use the footprint of the LCD shown in the manual to route the wires. 
 
TA check: As soon as you enter lab, show the TA your completed C files. 
 
3.    TASK 1: Connecting the LCD to the PIC24 system 
 
For this task you will construct an LCD interface (4-bit mode) to the basic PIC24 system constructed in previous labs. The LCD module used in this lab is HDM16216L-5-L30S from Hantronix. It allows character output in 2 lines with 16 characters per line. This LCD supports both 4-bit and 8-bit interfaces. The datasheet for this LCD module can be found here:  http://www.hantronix.com/down/16216l5.pdf. 
 
The LCD interface is divided into control lines (E, R/W#, RS), data lines (D7:D0) and power (VDD, VSS, VL, K, A). The 4-bit interface mode used in this lab is used to reduce the number of connections between the PIC24 and LCD module, allowing 4 transfer lines to be used (D7:D4). D3:D0 are unused. Figure 1 shows a PIC24 LCD interface for a HDM16216L-5-L30S standardized around the HD44780 LCD controller. Additional information on the LCD interface and programming can be found in Chapter 8 of the textbook (pages 302-310). 
 
The LCD requires a 5V power supply and ground. Further, if you recall, logic voltage level translation can be accomplished by using the open drain configuration and pull-up resistors. In addition, all “digital only” pins on PIC24 are 5V tolerant. Wire the LCD as follows: 
•    Wire all data connections as shown in Figure 1. 
•    Pins RB[4:7] on the PIC should be connected to D[4:7] on the LCD module (U2 on the schematic) leaving D[0:3] on the LCD module unconnected. Connect Pins RB[8, 9, and 13] with E, R/W#, RS. 
•    Lines D[4:7] and E, R/W#, RS should also be pulled up to +5V using resistors. 
•    VBB on the LCD module should be connected to ground (GND). 
•    VDD on the LCD module should be connected to 5V (Power Supply). 
•    The VDD – VL voltage difference determines the intensity of the characters displayed on the LCD. VL can be connected to the wiper terminal of a thumbwheel potentiometer, with another lead on the potentiometer connected to the VDD node and the other connected to ground. In our setup, we will connect VL to the ground for maximum intensity. 
 
   
Figure 1. LCD Interface to Microstick II 
TA check: Show the TA the wired LCD interface to the Microstick. Include a picture (from a cell phone) of the wired LCD interface to the Microstick II in the report. See Figure 2 for an example of fully wired system (note: 
do not literally follow this example, as the connections shown are not the most efficient and easy to replicate). 
  
Figure 2. An example of a wired LCD. 
 
 
4.    TASK 2: Character Output to LCD 
 
•    Copy the chap8 files to a suitable directory on your PC hard disk. 
•    Start MPLAB. Open the project lcd4bit.mcp (note: you must start MPLAB first, then open the project file). Create a new C source file named “output_name.c”. Add this file to the project, and remove the source file “lcd4bit.c” from the project. 
•    Modify the pin values in the code according to Figure 1. 
•    Modify the code to use open drain configuration for all pins connected to the LCD and configured as 
•    outputs (data lines, R/W, etc). 
•    With “lcd4bit.c” as a reference, create a program that is capable of displaying your first and last name on the LCD screen as well as your email address. 
o    Write a function that displays your first and last name on the top line of the LCD, moves the cursors to the bottom line (1st position) of the LCD, then writes your email address on the bottom line of the LCD. 
o    To be fair to those with long names, the characters on the screen should scroll across the display (moving right to left) at a rate of 200 ms. This can be done by taking advantage of the writeLCD function provided in “lcd4bit.c”. 
o    The HD44780 LCD controller datasheet is a good reference. 
 
 
TA  check:  Show  the  TA  the  operation  of  the  output_name.c  program.  Include  your  source  language programs in your lab report. Include a picture (from a cell phone is fine) of the LCD displaying your name. 
 
5.    TASK 3: Counter output to LCD 
 
For this task, you will implement a counter with a visual output to the LCD. 
 
•    Using the project lcd4bit.mcp as a basis, create a new project named counter_LCD.mcp. 
•    For this task, you will create a program (counter_LCD.c) that will output an incremental counter to the LCD screen as follows: 
o    Upon initialization of the program, output a character string “000” to the LCD screen. o When SW1 is pressed and released, the number on the LCD screen should increment by 1. 
o    Once program counts to “60”, the number of the LCD screen should change back to “000” and begin incrementing again on the press and release of SW1. 
o    To display the integer output, use the following: 
 
char str[3]; 
sprintf(str,”%.3d”,count); outStringLCD(str); 
 o Pressing SW2 should clear the count and change the displayed value back to “000”. 
o    Turn on LED1 when the count reaches “60”. Turn LED1 off when the count resets back to “000”. 
 
 
An  interrupt  service  routine  should  be  programmed  to  handle  the  state  changes  of  the pushbutton. Code from the project button_semaphore.mcp in the chap9 directory should be useful or Lecture 6. 
 
TA check: Show the TA the operation of the counter_LCD.c program. Include your source language program in your lab report. Include a picture (from a cell phone) of the LCD displaying your counter values (one picture will suffice). 
 
6.    Laboratory Report 
 
No later than a week from the day the lab is performed, provide the TA a printed copy of the lab report following the ECE383 Lab report Template given on the class website. Each lab group will submit one joint lab report to the TA. Your report should have the reporting requirements needed for Tasks 1-3. The TA will take off a significant number of points (15 points from total lab grade) if your C source does not have the required comments. 
 

More products