Difference between revisions of "Interfacing with a touchscreen"

From Mech
Jump to navigationJump to search
Line 14: Line 14:
== Circuit ==
== Circuit ==
[[image:lcd_circuit|thumb|300px|Circuit schematic of connections between PIC, LCD, MAX232 and touchscreen|right]]
[[image:lcd_circuit|thumb|300px|Circuit schematic of connections between PIC, LCD, MAX232 and touchscreen|right]]

The image on the right is the circuit schematic showing the connections between all the components. An actual


== Code ==
== Code ==

Revision as of 21:51, 9 February 2009

Original Assignment

Interface the PIC with a surplus touchscreen from the LIMS lab and display (x,y) data on an LCD screen (see, e.g., C Example: Serial LCD or C Example: Parallel Interfacing with LCDs) or a PC (e.g., matlab or hyperterminal).

Spec sheet: [1] (Use the last .pdf under Reference Materials)

Overview

The goal of the project is to interface the PIC18F4520 with the 3M EX II 7720SC capacitive touchscreen. The spec sheet is located here: [2] (Use the last .pdf under Reference Materials). In addition, when a finger makes contact with the touchscreen, the X-Y coordinates will be displayed on a JHD 162A Parallel LCD (see C Example: Parallel Interfacing with LCDs).

On this page you will find the steps to do this on your own. This includes the code, circuit diagram, and other notes about creating the interface.

Circuit

Circuit schematic of connections between PIC, LCD, MAX232 and touchscreen

The image on the right is the circuit schematic showing the connections between all the components. An actual

Code

Further Reading