Liquid crystal display

From MidsouthMakers - Memphis Area Hackerpace
Revision as of 20:51, 19 January 2010 by Dan9186 (talk | contribs) (moved Liquid Crystal Display to Liquid crystal display: standardization)
Jump to navigation Jump to search
A parallel input, 16x2 LCD display.

A liquid crystal display (LCD) is a thin, flat panel used for electronically displaying information such as text, images, and moving pictures. Its uses include monitors for computers, televisions, instrument panels, and other devices ranging from aircraft cockpit displays, to every-day consumer devices such as video players, gaming devices, clocks, watches, calculators, and telephones. Among its major features are its lightweight construction, its portability, and its ability to be produced in much larger screen sizes than are practical for the construction of cathode ray tube (CRT) display technology. Its low electrical power consumption enables it to be used in battery-powered electronic equipment. It is an electronically-modulated optical device made up of any number of pixels filled with liquid crystals and arrayed in front of a light source (backlight) or reflector to produce images in color or monochrome. The earliest discovery leading to the development of LCD technology, the discovery of liquid crystals, dates from 1888.

See Wikipedia for more details on Liquid crystal display.

Overview

An LCD module is a very versatile and useful component to incorporate into projects. It can allow for an opportunity to view the data that is being handled or a dynamic means to interact with its user. It can be used with an Arduino or connected to a microcontroller needing as little as 4 pins to operate.

Communication

Parallel

  • HD44780 - a standard form of parallel communication used with LCD screens.

Serial

Arduino

The Arduino is capable of communicating with the LCD modules in either serial or parallel. In the event of trying to conserve ports on the Arduino, it is best to look into possible serial communication instead of the standard parallel.

HD44780

For the HD44780 standard, it can handle the 8bit and 4bit mode. Preferably to use fewer ports on your Arduino, the 4bit mode is the better choice. Even though 8bit is faster, the 4bit is quite well fast enough. The Arduino has built in libraries to support the use of the HD44780 or compatible standard at Arudino-LCD.

SerLCD