Introduction: Interface GLCD With Arduino

Sourced from : http://www.theorycircuit.com/interface-glcd-with-arduino-display-your-photo-in-glcd/

Facebook Link: https://www.facebook.com/pages/Theorycircuit/825111734202123?ref=hl

Display your photo on glcd !

You can display your photo and selfie or pictures in glcd! to make this happen you have to follow some steps. First have arduino mega borad and glcd display and then some connecting wires.

Step 1: Make the Connection

Then make connections as per the diagram shows, don’t make mistake in connection then you will see improper image in glcd. Here 100 K variable resistor acts as a brightness control for glcd.

The numbers from 1 to 20 shown in right side of connection diagram is the pin number order in graphic lcd. Then corresponding arduino pin number also given straight to the glcd pin numbers.

Step 2: Arrange Things

After connecting all wires with arduino mega board and glcd, we have to chose the photo which we want to display in glcd.

For GLCD use Library file from Openglcd, the arduino library of display couldn’t directly support gld displays. Once you insert the openglcd library into arduino software you can see the example programs of GLCD in the arduino software.

Step 3: Get the Image Ready

Here we use 128x64 GLCD hence it can display any image that have 128x64 pixels. Make sure that your image should not exceed this pixel level. Resize and save your image as monochrome bitmap then your becomes black and white pixels.

Step 4: Convert Bitmap Into Hex

To display this bitmap in glcd we have to convert it into hex codes, for that download LCD Assistant software.

Step 5: Load Bitmap Image

Load bitmap image in LCD assistant software, through file Load image.

Step 6: Save It As Hex

After that directly convert bitmap into hex file by choosing save output. Keep in mind that you have to store your output as .h that is hex (ex: 12134.h)

Step 7: Copy Hex Details

Open the saved hex file through notepad and select hex file numbers only without any other terms.

Step 8: Make Header File

Make another file through new notepad and put define terms and bitmap size like below image shows.

Step 9: Paste in Library

After making the file save it as a hex file, and copy paste into openglcd bitmaps folder.

Step 10: Place Bitmap Image Into Library

You need to save your bitmap image also into the (openglcd/bitmaps/images) folder. Then only GLCD can clearly reproduce your image clearly.

Step 11: At the End

Finally we come to the end, here simple example arduino code given to display image that has been explained so far in this page.

Step 12: Arduino Code