Quantcast
Channel: Gadgetronicx
Viewing all articles
Browse latest Browse all 215

How to print image in Graphical LCD (GLCD) using Atmega32

$
0
0
Displaying-image-in-GLCD-AVR-tutorial-ATmega32
Printing Image in GLCD
Graphical LCD's known as GLCD are display devices which are capable of displaying graphical images, customized characters, etc. This paves way for any system to present information to the end user by means of interactive graphics. Bored of using the old 16x2 LCD displays, then you should probably try this one to make your projects more interactive.

This tutorial focused to teach you about printing a simple picture in this GLCD using AVR ( Atmega32) Microcontroller.

128 x 64 GLCD:

GLCD-pin-diagram-features
GLCD Pin diagram
This GLCD consists of 128 columns and 64 rows in it which are divided in two equal halves. Similar to 16x2 LCD this LCD consists of 8 data pins from (DB0-DB7) and other control pins. Read the complete working of GLCD before you move into the coding section of this tutorial.

EXPLANATION:

We all know that every picture is made up of basic blocks called as pixels and we are going to use that to our desired picture in this GLCD. But this GLCD will not support any colors so we have to prepare the image before printing it into this Graphical display. Since this device only supports 128 x 64 resolution we have to resize our image into the resolution 128 x 64.

After that as i said before these LCD will not support colors, so you have to change your image have Monochrome Bitmap format and you will finally get a black and white image So your final processed image will look like the one below.
Monochrome-image-small-size
Monochrome image
Now you have to assign the each pixel value into an array in your code which will make the image to print in your GLCD. Not to worry a tool known as "Graphic LCD bitmap generator" from Mikrocelectronica will help you to finish your job.
Mikroelectronica-bit-map-generator-for-windows
Snapshot of Bitmap Generator
This is a screenshot taken of the Bitmap generator, all you have to do is load your processed image in this application and it will automatically generate the pixel values of the image give the output as array values as you see in the screen shot. You can also invert the pixels if you think that the picture is not good enough to be printed. Now you have to copy the code and place it in your source code of your microcontroller. 

You can download the Bitmap generator application in the below link. Not to worry if it doesn't support for you, there are plenty of similar softwares available online.

CODE: 

This code was built using AVR studio 4.

  1. #include<avr/io.h>
  2. #define F_CPU 8000000UL
  3. #include<util/delay.h>

  4. void glcd_picture(const unsigned char *);
  5. void select_chip(int);

  6. int i;

  7. unsigned char photo[1024]={"Your image Array here"}; Your image pixels

  8. void glcd_int();
  9. void glcd_data(unsigned char);
  10. void glcd_cmd(unsigned char);

  11. void glcd_cmd(unsigned char cmd) //subroutine for command
  12.  {
  13.    PORTC=cmd; 
  14.    _delay_ms(2);
  15.    PORTD&=~(1<<2);
  16.    PORTD&=~(1<<1);
  17.    PORTD|=(1<<0);
  18.    _delay_ms(2);
  19.    PORTD&=~(1<<0);
  20.  }

  21. void glcd_data(unsigned char dat)  //subroutine for data
  22.  {
  23.    PORTC=dat;
  24.    _delay_ms(2);
  25.    PORTD|=(1<<2);
  26.    PORTD&=~(1<<1);
  27.    PORTD|=(1<<0);
  28.    _delay_ms(2);
  29.    PORTD&=~(1<<0);
  30.  }

  31. void glcd_init()                //subroutine for initialaization
  32. {
  33.   unsigned char command[4]={0x10,0xb8,0x40,0x3f};
  34.   select_chip(1);                      //Chip selection
  35.   for(i=0;i<4;i++)
  36.   glcd_cmd(command[i]);
  37.   select_chip(0);
  38.   for(i=0;i<4;i++)
  39.    glcd_cmd(command[i]);
  40.  }

  41. void select_chip(int chip)    //Chip selection
  42.  {
  43.   if(chip==1)
  44.    {
  45.       PORTD|=(1<<4);
  46.       PORTD&=~(1<<3);
  47.    }
  48.   else
  49.    {
  50.       PORTD&=~(1<<4);
  51.       PORTD|=(1<<3);
  52.    }
  53. }

  54. void glcd_picture(const unsigned char *ip)  //Subroutine for printing
  55.  {
  56.    int page,column;
  57.     for(page=0;page<8;page++)
  58. {
  59.   select_chip(0);
  60.   glcd_cmd(0xb8|page);
  61.   glcd_cmd(0x40);
  62.     for(column=0;column<128;column++)
  63.      {
  64. if(column==64)
  65. {
  66.  select_chip(1);
  67.  glcd_cmd(0xb8|page);
  68.  glcd_cmd(0x40);
  69. }
  70. glcd_data(*ip++);    //acessing array values using pointers
  71.     }
  72.        }
  73.   }

  74. int main(void)
  75. {
  76.   DDRC=DDRD=0xff;
  77.   _delay_ms(2);
  78.   PORTD&=~(1<<5);
  79.   _delay_ms(10);
  80.   PORTD|=(1<<5);
  81.   _delay_ms(2);

  82.   while(1)
  83.    {
  84.     glcd_init();                    //initialization
  85.     _delay_ms(1);
  86.     glcd_picture(photo);      //Printing image pixels
  87.     while(1);
  88.    }
  89. }

NOTE:

  • Replace the words "Your image pixel values" with the values your software have generated for your particular image.
  • You can also draw image of your desire on this GLCD by calculating pixels for each block of this Graphical LCD.
Like this tutorial? Share this with others through social sites and don;t forget to follow us there. Keep visiting us for more tutorials in this cool GLCD. Post your queries and comments below this post, we are happy to help you.

Viewing all articles
Browse latest Browse all 215

Trending Articles