LCD HD44780 Raspberry Pi 8 Bit Wiring

LCD HD44780 Raspberry Pi 8 Bit Wiring

NOTE:  I originally wrote this in 2017 and want to upgrade this project to the latest Raspberry Pi OS.  This is why I started this page.  To document my ridiculously involved projects so I could repair/replace them someday.   This is a direct cut and paste of my page from the internet Wayback Machine.  I’ll clean it up later as I am currently working on this LCD project again. 

Had some issues with 4 bit wiring of my HD44780, 20×4 LCD which I use in a project in a tube amplifier. Every time the AC power is thrown it causes corruption in the LCD characters. Supposedly 8 bit operation is less susceptible to this behavior so here we go. ……….

Virtually every tutorial on the web is for 4 bit operation, and why not? Less wires, less pin assignments to add to your code……….it’s just easier.

Here’s how we wire it from the LCD (pins 1 through 16)

Pin 1 – Ground

Pin 2 – Hot (5v) pin 2 or 4 on Raspberry Pi

Pin 3 – Center leg of potentiometer for contrast (usually 10K ohm and they usually come with the LCD)

Pin 4 – RS pin 26

Pin 5 – RW to ground (DO NOT HOOK TO A GPIO OR YOU CAN REWRITE YOUR LCD)

Pin 6 – EN pin 24

Pin 7 – D0 pin 11

Pin 8 – D1 pin 12

Pin 9 – D2 pin 13

Pin 10 – D3 pin 15

Pin 11 – D4 pin 16

Pin 12 – D5 pin 18

Pin 13 – D6 pin 22

Pin 14 – D7 pin 7

Pin 15 – Hot (5v)

Pin 16 – Ground

NOTE: Pin 1 of LCD is the pin closest to the Raspberry Pi.

Pin 1 of the Raspberry Pi is the bottom left hand side pin. The pin above it has two red wires on it and is pin #2.

The remaining two pins on the Potentiometer go to hot and ground. Note that pin 2 I made a split jumper because there are only two 5v connections on the Pi. Three are required here. The black, negative wires can be placed on any Ground on the GPIO on the Raspberry Pi.

Also if you want to eliminate the potentiometer take the wire that goes from LCD pin to Ground (pin 3) and place a resistor in series with it. About 2K ohms will get you a nice clean display with perfect contrast. I have some small 4.7k ohm resistors and I twisted 2 in parallel together (2.35k ohms) and heat shrinked it up real pretty. Perfect display contrast and that totally elimates running another hot and ground wire down to a 3 leg potentiometer.

In order to fetch this information to display you need a python script from Github by jscrane. The file named lcd_lms.pl is the one you want. I usually click on that GitHub file which reveals the code in its entirety. Copy the whole code to your clipboard and do the following:

cd
mkdir lcdlms
cd lcdlms
sudo nano lcd_lms.pl

Then paste your code in. Once it is in find the line near the top that says this:

my $DEF_LMS = "rpi";

Change “rpi” to the IP address of your server

my $DEF_LMS = "192.168.20.138";

Hit CTL +X then Y and Enter to save the file.

Now make it executable.

sudo chmod u+x lcd_lms.pl

Now there are a lot of ways to start the program and a lot of Linux purists may poo-poo my simplistic method instead of using a fancy script which monitors it for life and resurrects it if it dies. I just start it from crontab at boot. The only gotcha here is the sleep command. I have a Raspberry Pi 3 and LogitechMediaServer starts in a matter of seconds. Consequently I have a Pi A+ which it takes about 2 minutes for LMS to fully start. Adjust your sleep command accordingly.

sudo crontab -e

add this to the bottom and adjust accordingly for the location of your file, your IP address and the name of your squeezelite player at the end.

@reboot sleep 25; /home/pi/lcdlms/./lcd_lms.pl -v lms -d localhost:13666 -l 192.168.20.138:9090 LCDpi

Should start at boot. Yer doing it!

Now for LCDProc.

Install lcdproc with these commands:

sudo apt-get install libany-uri-escape-perl libswitch-perl
sudo apt-get update
sudo apt-get install lcdproc lcdproc-extra-drivers
mkdir lcdproc
cd lcdpro
sudo apt-get install build-essential
sudo apt-get remove lcdproc
sudo apt-get install lcdproc lcdproc-extra-drivers

You can now modify LCDd.conf

sudo nano /etc/LCDd.conf

In /etc/LCDd.conf the following must be added to the driver section of the HD44780 section. (Note that the numbers are different and are the GPIO assignments of the Raspberry Pi NOT the PIN numbers).

For cut and paste below:

#GPIO Pin map page for 8 bit operation

pin_D0=17

pin_D1=18

pin_D2=27

pin_D3=22

pin_D4=23

pin_D5=24

pin_D6=25

pin_D7=4

pin_EN=8

pin_RS=7

A special driver is needed for newer Pi’s and can be downloaded with the following command in a Pi Terminal. Make sure you point to this driver location in the

DriverPath=

section. I placed mine in /home/pi/lcdproc

mkdir lcdproc
cd lcdproc
wget http://sourceforge.net/p/lcdproc/patches/_discuss/thread/4c659fe3/b8f3/attachment/hd44780.so

After upgrading my Raspberry Pi LCD project in May 2017 the program LCDd would not start. The driver posted just above was not recognized. I found a driver in this thread that worked.

https://forum.libreelec.tv/thread-1930-page-5.html

The driver file can be downloaded from my site here. Clicking the link will immediately download the file. I had NOTHING to do with the development of this driver. Nothing. Nada. Zip.


Here’s my /etc/LCDd.conf file in it’s entirety. I’ve deleted the unneeded drivers for brevity. Your server section and driver section should contain the same information.

# LCDd.conf -- configuration file for the LCDproc server daemon LCDd
#
# This file contains the configuration for the LCDd server.
#
# The format is ini-file-like. It is divided into sections that start at
# markers that look like [section]. Comments are all line-based comments,
# and are lines that start with '#' or ';'.
#
# The server has a 'central' section named [server]. For the menu there is
# a section called [menu]. Further each driver has a section which
# defines how the driver acts.
#
# The drivers are activated by specifying them in a driver= line in the
# server section, like:
#
#   Driver=curses
#
# This tells LCDd to use the curses driver.
# The first driver that is loaded and is capable of output defines the
# size of the display. The default driver to use is curses.
# If the driver is specified using the -d <driver> command line option,
# the Driver= options in the config file are ignored.
#
# The drivers read their own options from the respective sections.






## Server section with all kinds of settings for the LCDd server ##
[server]


# Where can we find the driver modules ?
# IMPORTANT: Make sure to change this setting to reflect your
#            specific setup! Otherwise LCDd won't be able to find
#            the driver modules and will thus not be able to
#            function properly.
# NOTE: Always place a slash as last character !
#DriverPath=server/drivers/
DriverPath=/home/pi/lcdproc/


# Tells the server to load the given drivers. Multiple lines can be given.
# The name of the driver is case sensitive and determines the section
# where to look for further configuration options of the specific driver
# as well as the name of the dynamic driver module to load at runtime.
# The latter one can be changed by giving a File= directive in the
# driver specific section.
#
# The following drivers are supported:
#   bayrad, CFontz, CFontzPacket, curses, CwLnx, ea65, EyeboxOne, g15, glcd,
#   glcdlib, glk, hd44780, icp_a106, imon, imonlcd,, IOWarrior, irman, joy,
#   lb216, lcdm001, lcterm, lirc, lis, MD8800,, mdm166a, ms6931, mtc_s16209x,
#   MtxOrb, mx5000, NoritakeVFD, picolcd,, pyramid, rawserial, sdeclcd,
#   sed1330, sed1520, serialPOS, serialVFD, shuttleVFD, sli,, stv5730, svga,
#   t6963, text, tyan, ula200, vlsys_m428, xosd
Driver=hd44780


# Tells the driver to bind to the given interface. [default: 127.0.0.1]
Bind=127.0.0.1


# Listen on this specified port. [default: 13666]
Port=13666


# Sets the reporting level; defaults to warnings and errors only.
# [default: 2; legal: 0-5]
#ReportLevel=3


# Should we report to syslog instead of stderr? [default: no; legal: yes, no]
#ReportToSyslog=yes


# User to run as.  LCDd will drop its root privileges and run as this user
# instead. [default: nobody]
User=nobody


# The server will stay in the foreground if set to yes.
# [default: no, legal: yes, no]
#Foreground=yes


# Hello message: each entry represents a display line; default: builtin
Hello=" John's Awesome"
Hello="  Raspberry Pi"


# GoodBye message: each entry represents a display line; default: builtin
GoodBye=" Turn us back"
GoodBye="  on soon"


# Sets the default time in seconds to displays a screen. [default: 4]
WaitTime=5


# If set to no, LCDd will start with screen rotation disabled. This has the
# same effect as if the ToggleRotateKey had been pressed. Rotation will start
# if the ToggleRotateKey is pressed. Note that this setting does not turn off
# priority sorting of screens. [default: on; legal: on, off]
#AutoRotate=off


# If yes, the the serverscreen will be rotated as a usual info screen. If no,
# it will be a background screen, only visible when no other screens are
# active. The special value 'blank' is similar to no, but only a blank screen
# is displayed. [default: on; legal: on, off, blank]
ServerScreen=blank


# Set master backlight setting. If set to 'open' a client may control the
# backlight for its own screens (only). [default: open; legal: off, open, on]
#Backlight=open


# Set master heartbeat setting. If set to 'open' a client may control the
# heartbeat for its own screens (only). [default: open; legal: off, open, on]
#Heartbeat=open


# set title scrolling speed [default: 10; legal: 0-10]
#TitleSpeed=10


# The "...Key=" lines define what the server does with keypresses that
# don't go to any client. The ToggleRotateKey stops rotation of screens, while
# the PrevScreenKey and NextScreenKey go back / forward one screen (even if
# rotation is disabled.
# Assign the key string returned by the driver to the ...Key setting. These
# are the defaults:
ToggleRotateKey=Enter
PrevScreenKey=Left
NextScreenKey=Right
#ScrollUpKey=Up
#ScrollDownKey=Down




## The menu section. The menu is an internal LCDproc client. ##
[menu]
# You can configure what keys the menu should use. Note that the MenuKey
# will be reserved exclusively, the others work in shared mode.


# Up to six keys are supported. The MenuKey (to enter and exit the menu), the
# EnterKey (to select values) and at least one movement keys are required.
# These are the default key assignments:
MenuKey=Escape
EnterKey=Enter
UpKey=Up
DownKey=Down
#LeftKey=Left
#RightKey=Right


## Hitachi HD44780 driver ##
[hd44780]


# Select what type of connection. See documentation for availabe types.
ConnectionType=raspberrypi


# I/O address of the LPT port. Usual values are: 0x278, 0x378 and 0x3BC.
# For I2C connections this sets the slave address (usually 0x20).
Port=0x378


# Device of the serial, I2C, or SPI interface [default: /dev/lcd]
Device=/dev/ttyS0


# Bitrate of the serial port (0 for interface default)
Speed=0


# If you have a keypad connected.
# You may also need to configure the keypad layout further on in this file.
Keypad=no


# Set the initial contrast (bwctusb, lcd2usb, and usb4all)
# [default: 800; legal: 0 - 1000]
#Contrast=1000


#GPIO Pin mappage for 4 bit operation
#pin_D4=25
#pin_D5=24
#pin_D6=23
#pin_D7=17


#GPIO Pin mappage for 8 bit operation
pin_D0=17
pin_D1=18
pin_D2=27
pin_D3=22
pin_D4=23
pin_D5=24
pin_D6=25
pin_D7=4
pin_EN=8
pin_RS=7


# Set brightness of the backlight (lcd2usb and usb4all):
# Brightness is the brightness while the backlight is set to 'on'.
# [default: 800; legal: 0 - 1000]
#Brightness=1000


# OffBrightness is the brightness while the backlight is set to 'off'.
# [default: 300; legal: 0 - 1000]
#OffBrightness=0


# If you have a switchable backlight.
Backlight=no


# If you have the additional output port ("bargraph") and you want to
# be able to control it with the lcdproc OUTPUT command
OutputPort=no


# Specifies if the last line is pixel addressable (yes) or it controls an
# underline effect (no). [default: yes; legal: yes, no]
#Lastline=yes


# Specifies the size of the LCD.
# In case of multiple combined displays, this should be the total size.
Size=20x4


# For multiple combined displays: how many lines does each display have.
# Vspan=2,2 means both displays have 2 lines.
#vspan=2,2


# If you have an HD66712, a KS0073 or another controller with 'extended mode',
# set this flag to get into 4-line mode. On displays with just two lines, do
# not set this flag.
# As an additional restriction, controllers with and without extended mode
# AND 4 lines cannot be mixed for those connection types that support more
# than one display!
#ExtendedMode=yes


# In extended mode, on some controllers like the ST7036 (in 3 line mode)
# the next line in DDRAM won't start 0x20 higher. [default: 0x20]
#LineAddress=0x10


# Character map to to map ISO-8859-1 to the LCD's character set
# [default: hd44780_default; legal: hd44780_default, hd44780_euro, ea_ks0073,
# sed1278f_0b, hd44780_koi8_r, hd44780_cp1251, hd44780_8859_5, upd16314 ]
# (hd44780_koi8_r, hd44780_cp1251, hd44780_8859_5 and upd16314 are possible if
# compiled with additional charmaps)
CharMap=hd44780_default


# If your display is slow and cannot keep up with the flow of data from
# LCDd, garbage can appear on the LCDd. Set this delay factor to 2 or 4
# to increase the delays. Default: 1.
#DelayMult=2


# Some displays (e.g. vdr-wakeup) need a message from the driver to that it
# is still alive. When set to a value bigger then null the character in the
# upper left corner is updated every <KeepAliveDisplay> seconds. Default: 0.
#KeepAliveDisplay=0


# If you experience occasional garbage on your display you can use this
# option as workaround. If set to a value bigger than null it forces a
# full screen refresh <RefreshDiplay> seconds. Default: 0.
#RefreshDisplay=5


# You can reduce the inserted delays by setting this to false.
# On fast PCs it is possible your LCD does not respond correctly.
# Default: true.
DelayBus=true


# If you have a keypad you can assign keystrings to the keys.
# See documentation for used terms and how to wire it.
# For example to give directly connected key 4 the string "Enter", use:
#   KeyDirect_4=Enter
# For matrix keys use the X and Y coordinates of the key:
#   KeyMatrix_1_3=Enter
KeyMatrix_4_1=Enter
KeyMatrix_4_2=Up
KeyMatrix_4_3=Down
KeyMatrix_4_4=Escape



# EOF

Leave a Reply

Your email address will not be published. Required fields are marked *