Arduino Playground is read-only starting December 31st, 2018. For more info please look at this Forum Post

HpLaserJetLcd

This library allows the use of the LCD module from many HP LaserJet printers. The library functions virtually identically to the standard LiquidCrystal library, with a number of additional features.

Library Download

The library and examples are available here: HpLaserJetLcd.zip

See Arduino Libraries for information on how to install libraries. For the purposes of that page, this library is a "user-created library".

Pros and Cons of This Display/Library

At first glance there seems to be little point in trying to make use of a used, proprietary LCD module when brand new, standard 16x2 LCD modules can be had for little investment. However the LCD offers some useful features over the standard HD44780 LCD modules.

Pros:

  • Only 3 pins required to drive the LCD, 3 digital outputs (ex. LEDs) and backlight
  • Only 1 additional pin required to read the 9 digital inputs (ex. buttons)
  • Software switchable backlight control
  • No need for a contrast potentiometer circuit
  • 3.3v circuity - can be used easily in 3.3v projects
  • HD66710 LCD driver IC has additional functionality over the older HD44780 IC (functionality not currently exposed by this library)

Cons:

  • Interfacing to 5v projects requires a small amount of interfacing circuity
  • The backlight requires 5v which is a challenge for 3.3v only projects
  • The 20 pin ribbon connector is difficult to use in projects
  • The original LED/keypad/control panel assembly is not trivially adapted to other projects

Note that the character set does not support lower case. Those character codes are used for additional international characters.

Wiring

CAUTION: In order to avoid damage to the display module, Arduino or other circuitry, it is important that the only 5v power/signal sent to the display is to the backlight power. When interfacing to a 5v Arduino or other microcontroller, SEL, CLK and DIN should be interfaced using the "diode" method described in this tutorial from Sparkfun. DOUT can be connected directly to a 5v input.

The display should be connected as described below to use the example sketches without modification. Options for different connectors are provided. Connections need to be made to only one connector.

DescriptionArduino digital pin10 pin IDC keypad connector7 pin keypad connector20 pin ribbon connector
GND 2,4,6,10119
3.3V 12,318
5V 9 20
SEL33514
CLK55415
DIN77617
DOUT88716

Additional Data

The additional information in this section is not required to make use of the library.

Attach:HpLaserJetLcdFront.jpg Δ

Attach:HpLaserJetLcdBack1.jpg Δ

Attach:HpLaserJetLcdBack2.jpg Δ

The LCD module features two ICs, one is a HD66710 LCD driver which is backwards compatible with the standard HD44780, and the second being what appears to be a custom ASIC or programmable logic IC. The custom IC provides a clocked serial interface to the LCD driver IC, 3 digital outputs, 9 digital inputs and backlight control.

The pinout of the 20 pin connector is as follows:

Pin(s)Description
1-3Digital outputs
4?
5-13Digital inputs
14SEL
15CLK
16DOUT
17DIN
18Vcc (3.3V)
19GND
20Backlight power (5V)

All logic is at 3.3v except the LED backlight power.

Data is latched and clocked in/out of the display using the same latch and clock signals so care must be taken so that one operation does not interfere with the other. In particular, care must be taken when reading out the digital input state so as not to not cause problems with LCD, backlight or digital output state.

The library always clocks 16 bits between latching operations as this is required to set the LED backlight. It appears to be possible to access select features by clocking in fewer bits however this functionality has not been fully explored and is therefore not fully understood.

To read the digital inputs, SEL must be brought from HIGH to LOW. The first 9 bits presented onto DOUT by clocking CLK correspond to the 9 digital inputs. Further bits output are undefined until SEL is brought from HIGH to LOW again. Note that the act of bringing SEL through HIGH to LOW will also latch the input data as described below, so care must be taken to ensure valid input data has been clocked in before the digital inputs can be latched.

The drive the LCD, backlight or digital outputs, 16 bits are clocked by CLK via DIN, and then latched by bring SEL HIGH and then LOW again. The bits are defined as follows (low bit numbers are clocked in before high bits):

Bit Number(s)Description
0LCD backlight control (HIGH=On)
1-2Unused?
3-5Digital outputs
6Unknown. Set to 0
7HD66710 RS (inverted)
8-15HD66710 data bits 0-7 (inverted)

When the data is latched in with SEL the custom IC takes care of sending the relevant data to the HD66710 including toggling of the E line. Note that while 8 HD66710 data bits are clocked in at once, the custom IC sends the data to the HD66710 in two 4 bit nibbles. Therefore the HD66710 function set register must be set up for 4 bit communications.

Links

  • Article providing partial technical details on the display. Note that there are inaccuracies
  • M66004Vfd library supporting VFD modules from HP LaserJet printers