HD44780 LCD, I/O expanders, I2C interface etc

HD44780 LCD, I/O expanders, I2C interface etc

Here is my study note on the HD44780 Character LCD and the options for it connection to the controller devices.

HD44780 LCD

  • a Character LCD as opposed to a Graphical LCD
  • ideal for displaying text
  • comes in various sizes but 16x2 and 20x4 seems popular

According to Wikipedia:

The Hitachi HD44780 LCD controller is an alphanumeric dot matrix liquid crystal display (LCD) controller developed by Hitachi in the 1980s. The character set of the controller includes ASCII characters, Japanese Kana characters, and some symbols in two 28 character lines.

The HD44780 is one of the most popular character LCDs ever made, with numerous third-party displays utilizing its 16-pin interface and instruction set for compatibility.

HD44780 | Google images

Do we need the soldering?

We have an option of purchasing:

For a standalone LCD, some products come with header pins soldered:

For an LCD with I2C interface module, some products are pre-assembled:

For SparkFun Qwiic Connect System, most products come with Qwiic connectors:

LCD pins

The HD44780 LCD typically has 16 pins but some products add extra pins for RGB backlight.

I personally categorize the LCD pins into four groups in my head so that they make sense to me:

  • Power and contrast (pins 1-3)
  • Special pins (pins 4-6)
  • Data pins (pins 11-14)
  • Backlight pins (optional; pins 15-16 or 15-18)

Wikipedia and Adafruit Character LCD wiring instructions may be helpful to see the broad picture. For further info, I found helpful the following links:

Power and contrast (pins 1-3)

LCD pin #LCD pin name
1Ground
2VCC+3.3 to +5V (typical)
3Contrast+3.3 to +5V (typical)

Special pins (pins 4-6)

LCD pin #LCD pin name
4Register Select (RS)0: Instruction , 1: Data
5Read/Write (R/W)0: Write, 1: Read; most likely always 0
6Enable (EN)Starts read/write

Particularly the Register Select bit and the Enable bit are important. Register Select switches between the instruction mode and the data mode when we interact with the display. The Read/Write bit is not needed if we are only writing to the display. We will most likely to connect the Read/Write pin to ground so that it is always low.

Data pins (pins 11-14)

LCD pin #LCD pin name
7-10Data Bit 0-3 (DB0-3)Unused in 4-bit operation
11-14Data Bit 4-7 (DB4-7)Transfers instruction or data

The HD44780 LCD has 4-bit mode and 8-bit mode. The 4-bit mode allows us to split a data byte (8-bit) into high four bits and low four bits, then sent them separately. That way, we can reduce the number of the required I/O pins by half. It seems like typically most people only use the 4-bit mode.

The byte we send to the display can be either instruction or data depending on the Register Select bit.

Backlight pins (optional; pins 15-16 or 15-18)

LCD pin #LCD pin name
15Backlight AnodeIf applicable
16Backlight Cathode or RedIf applicable
17Backlight Cathode GreenIf applicable
18Backlight Cathode BlueIf applicable

The backlight is not directly relevant to controling the LCD. It can be done independently.

The original HD44780 LCD only has a single color LED backlight using pins 15-16. Some newer HD44780-compatible LCDs has RGB backlight using pins 15-18.

We should plan ahead of time about what we want to do with the backlight. Many I2C modules do not support RGB backlight. If a display has an RGB backlight and we only use pin 15-16, the backlight would be fixed to the red color, which would not be ideal.

With the RGB backlight, it is easy to to get yellow, pink and cyan just by switching on/off red, green and blue. It is simply the combination of red, green and blue.

If we want to control 24-bit RGB for more precise colors in beween red, green and blue, we would need Pulse Width Modulation (PWM) so that we can adjust the brightness for each color.

Adafruit RGB Backlit LCDs instructions may be helpful.

Custom font

The HD44780 LCD allows us to register custom characters; however I personally would not bother because I do not find the feature useful. According to Wikipedia:

A limited number of custom characters can be programmed into the device in the form of a bitmap using special commands. These characters have to be written to the device each time it is switched on, as they are stored in volatile memory.

I/O expanders

  • A serial to parallel converter.
  • Allows us to adds additional GPIO ports.
  • Reduces the number of GPIO ports on our controller device that are used for the LCD.

There are so many I/O expanders out there, but it seems like the following items are among the most poplular for the LCDs:

We need 6-7 pins out of eight to control the LCD so the 8-bit I/O expander runs out of pins for the RGB backlight. We can switch on/off one LED.

I2C / SPI module

Different products out there use different I/O expanders internally, so please be aware of which I/O expander you are using if you use something like an I2C / SPI backpack. Also the pin assignment between the LCD and the I/O expander is important.

PCF8574-based I2C module

As far as I know, the PCF8574-based I2C modules are the most popular and inexpensive. A pre-assembled 16x2 LCD with I2C module is typically less than US$10. Handson Technology I2C Serial Interface 1602 LCD Module User Guide summarizes the typical specifications of the PCF8574-based I2C module.

PCF8574-based I2C module

Adafruit i2c / SPI character LCD backpack

The Adafruit i2c / SPI character LCD backpack supports both I2C and SPI interfaces. It uses MCP23008 for I2C and SN74HC595 for SPI as of writing.

Adafruit i2c / SPI character LCD backpack

The following wiring worked well:

LCD backpackRaspberry Pi - I2CRaspberry Pi - SPI
Clock (CLK)Serial Clock (SCLK)Serial Clock (SCLK)
Data (DAT)Serial Data (SDA)Controller Out Peripheral In (COPI)
Latch (LAT)-Chip Select (CS)

SparkFun Qwiic Connect System

I have never used the Qwiic Connect System before but it looks like a nice option when we need to connect multiple deviced on the I2C bus.

It seems promissing but since it is relatively new, I am concerned that there is not much information available as of writing.

I'll try it soon.

Adafruit STEMMA QT

It is similar to SparkFun Qwiic Connect System.

USB interface

There is also a USB interface. I wonder when this option can be useful because for example Raspberry Pis do not have many USB ports.

Conclusion

  • Before using the LCD, it is nice to understand roughly how the LCD works.
  • Different products out there use different I/O expanders internally.
  • The pin assignment between the LCD and the I/O expander is important.
  • The PCF8574-based I2C module is nice and inexpensive solution.
  • SparkFun Qwiic Connect System seems promising but since it is relatively new, there is not much information available as of writing.

I have not used SparkFun Qwiic Connect System or USB interface but I am curious about them. I'll try them out soon and keep on updating the contents as I learn more.