3 Simple Ways to
Share What You Make

With Instructables you can share what you make with the world — and tap into an ever-growing community of creative experts.

PhotosPhotos

Share one or more photos of a project, recipe, or whatever you've made, quickly and easily.

Step by StepStep-By-Step

Share your step-by-step photos with text instructions of what you made so others can do it too!

VideoVideo

Share your how-to video. You'll need your embed code from a video site such as YouTube.

Controlling a character LCD with an Arduino

Controlling a character LCD with an Arduino
Hello! Today I will be introducing Character LCDs and showing how to connect them to an Arduino.
It is all very simple and uses only 6 PINS TO INTERFACE WITH!













Note: the image is not mine and comes from http://www.micro-examples.com/public/microex-navig/doc/078-lcdscope.html

 
Remove these adsRemove these ads by Signing Up
 

Step 1Parts needed

You will need the following components to perform this project:
1x '''Arduino (any kind will do)'''
1x '''HD44780 character LCD'''
'''lots of non-stranded wire'''
One 10k Potientiometer
« Previous StepDownload PDFView All StepsNext Step »
15 comments
Jan 26, 2010. 9:13 AMrobotjam says:
Hi, this instructable is exactly what i have been looking for but i am having a problem downloading the custon character creator it keeps wanting to download as a .tmp file amd my computer keeps asking if i want to go online to find a program to open it , which does not work either. I am using a Windows Vista machine. Is this the only character creator that will work with my Arduino? Your help in this matter will be greatly appreciated.

Thank you
Nov 23, 2010. 4:34 AMgrampafish says:
change the .tmp to .exe that works for me because i had the same problem
Aug 3, 2010. 7:12 PMArduino Guy says:
you do know that the pot has to be connected to GND - LCD3 - +5volt. yet it will probably work your way.
Jun 24, 2010. 9:43 AMthanh000 says:
thank, i use AVR and this help me much
Apr 29, 2010. 8:10 PMzenoture says:
Hmm, i must be doing something wrong because when I hooked it up and ran the code, all I saw on the first line was squares, nothing else. When i was looking at it from an angle I saw an 'o' and saw a cursor blinking but that's about it... Wired it up exactly like the image, but didn't seem to work. Also, in the Arduino code, it says pin 11 is RW, but on the image, there is no pin 11 connected, and RW on my LCD module is actually pin 5... I tried rewiring it according to the comments in the Arduino code, but then the boxes didn't even come up, so i'm at a loss...
Feb 5, 2010. 3:10 PMthecageybee says:
Hi there. Hopefully I can field this one.
I've just been creating my own symbols for use on a weather station I'm making.
I've found out that the arduino IDE (0.17 at least, not sure about  0.18) and the LiquidCrystal library that comes with it is only capable of assigning 8 custom characters.
Hopefully someone knows of a workaround or can supply us with a library.
Also, the 5x8 matrix is a technical limitation to do with how the LCD is made and controlled, completely different approach than graphical LCDs.
If you wanted to use a 6x10 matrix you'd have to make each char take up 2 charactors horizontally and 2 vertically. I guess it might be possible, but you'd end up with an 8x1 display.
Hope I've explained this clearly enough.     The Cageybee
Mar 12, 2010. 4:59 PMSimpson_jr says:
A workaround of just 8 characters.

I just received my first  arduino + 20 x 4 display 6 days ago, so don't shoot me, I'm just a beginner.

As PC-programmer I normally would define all characters in the setup-part of my program, but I  tried to define different characters in the loop part for my Arduino and... it works !

Just define all characters you want in several arrays and use those to recreate the characters you want while... you're in the loop. Every time you need a new character you'll have to recreate it. "Old" characters will be replaced by new ones, so... you'll have to recreate the old ones  as well if you want to use those  again. It's probably  easiest  to recreate every non-standard character each time you use it.

A small example which displays a smiley with and one without a nose using the same self defined character address . I've used the pins for the display (12, 11, 5, 4, 3, 2) as used in the arduino examples and you might need to change the setup part if you've got a different lcd-display.


#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);

byte smiley[8] = {
  B00000,
  B10001,
  B00000,
  B00000,
  B10001,
  B01110,
  B00000,
};
byte nose[8] = {
  B00000,
  B10001,
  B00000,
  B00100,
  B10001,
  B01110,
  B00000,
};

void setup() {
  lcd.begin(20, 4); 
}

void loop() {
  lcd.createChar(0, smiley);
  lcd.write(0);
  delay (1000);
  lcd.createChar(0, nose);
  lcd.write(0);
  delay (1000);
}


Mar 13, 2010. 2:25 AMSimpson_jr says:
Already noticed some mistakes in my example, sorry...

I've connected the LCD as described on most pages of http://www.arduino.cc/. which is a little different as described in this article.
One should replace my

LiquidCrystal lcd(12, 11, 5, 4, 3, 2);    - line with

LiquidCrystal lcd(12, 11, 2, 7, 8, 9, 10);    to use the setup of this instructable.

Next, it's possible to create more as 8 characters using my routine, but I guess there still is a limit. With 5x8 pixels for each character one would need 1600 self defined characters to display all possibilities. ((5*8)^2)
Arduino will probably not be able to do that.

How ever, one should be able to create characters like the waveform-characters of this instructable by converting the outcome of analog readings (they look analog to me) to self defined characters, that won't use much memory.
Besides, most of those 1600 characters won't be very useful anyway.

Jan 1, 2010. 2:59 PMblackwellj says:
 is there a mac version of the program?
Feb 16, 2010. 6:10 PMnadav says:
 I just found this site that will create characters on any OS... all you need is a web browser.


icontexto.com/charactercreator/
Dec 31, 2009. 12:15 PMVALKIR says:
 hey, i really like this, and the char creator will prove invaluable over the next few days for me... i have a question though - the program generates code for a 5x8 or smaller matrix (addresses to be exact) , but what if i want to use it for a different matrix , say 6x10 for example , what would I have to add for aditional "dots" that are "outside" this 5x8 matrix? i'm studying the pattern right now but as far as "outside" goes- i'm kinda stuck.
Nov 22, 2009. 10:50 AMJodex says:
Thank you for the instructable! It will help me if and when I buy LCD
Nov 24, 2009. 8:09 PMduckythescientist says:
I suggest that you do buy one.  I have two, and I'm very glad that I purchased them. Make sure to find cheap ones though if you don't care about the specific colors/backlights. 
Dec 17, 2009. 10:10 AMJodex says:
Oh sorry, can't link....=(
Nov 24, 2009. 9:30 PMJodex says:
Okay. I think I'm gonna buy that or that same but with different colors.
www1.elfa.se/elfa~ex_en/b2b/catalogstart.do

Pro

Get More Out of Instructables

Already have an Account?

close

All Steps Viewing
View all steps of an Instructable on the same page when you're a Pro Member.

Upgrade to Pro today!
11
Followers
5
Author:baharini
I'm a software developer, but I also love tinkering with electronics. My Instructables are all about Arduino.