| Author |
Message |
Dark Angel
Joined: 18 Jan 2002 Posts: 29
|
23 May 2003 21:20 fastlcd |
|
|
|
|
I begin programming in C a graphic LCD 128x64.
I found some programs called bmp2lcd wich change a bmp file into an array, but there is no example of using it.
How do you put this on an graphic lcd.
Does anybody have examples?
Thanks
I'v googled, but only found the programs and NONE of them explained how to use it.
|
|
| Back to top |
|
 |
cancel
Joined: 27 May 2001 Posts: 286 Helped: 11
|
24 May 2003 7:50 bmp to lcd |
|
|
|
|
hi .. have a look here:
http://www.geocities.com/dinceraydin/lcd/index.html
lots of usefull infos
regards
cancel
|
|
| Back to top |
|
 |
ME
Joined: 14 Mar 2002 Posts: 1523 Helped: 13
|
24 May 2003 12:37 bmp2lcd |
|
|
|
|
| cancel wrote: |
hi .. have a look here:
http://www.geocities.com/dinceraydin/lcd/index.html
lots of usefull infos |
This is a dead link
|
|
| Back to top |
|
 |
Dark Angel
Joined: 18 Jan 2002 Posts: 29
|
24 May 2003 12:43 bitmap to lcd |
|
|
|
|
Already found this site.
Thanks anyway.
I use a program bmp2lcd wich makes header file from the bitmap wich you include in the c file. The header file contains an array, but i really don't know what to do with it. (i'm not an expert in embedded c).
On mp3 players with graphic displays are for example the buttons defined, but i don't know how this is done.
|
|
| Back to top |
|
 |
DaMa
Joined: 09 Nov 2001 Posts: 15
|
24 May 2003 14:29 lcd bitmap converter |
|
|
|
|
| Which type of compiler and microcontroller that you program?
|
|
| Back to top |
|
 |
Dark Angel
Joined: 18 Jan 2002 Posts: 29
|
24 May 2003 16:03 bmp lcd |
|
|
|
|
At this moment i'm using an atmel 8515 with avr-gcc compiler.
After testing/learning i want to use it with a HC12.
But any example is welcome. Most examples in the net are for the character displays.
|
|
| Back to top |
|
 |
direnc
Joined: 27 Jan 2002 Posts: 58
|
24 May 2003 17:17 lcd bitmap |
|
|
|
|
Hi,
http://www.indata.si/grega/ has some AVR GCC code for graphic LCDs based on HD61202 or KS0108. You can usa that as the base of your project.
As for what do do with the header you get.
Enable left controller
Set Page and column address 0 . Sent 64 bytes from the file.
Enable left controller
Set Page and column address 0 . Sent 64 bytes from the file.
Do all of the above 7 more times, increasing the page address every time. Now you have your image on the display.
I hope this helps.
|
|
| Back to top |
|
 |
DaMa
Joined: 09 Nov 2001 Posts: 15
|
24 May 2003 20:11 bmptolcd |
|
|
|
|
Toshiba T6963C Dot Matrix LCD Controller example codes in PIC and Intel 8051.
http://ourworld.compuserve.com/homepages/steve_lawther/t6963c.htm
|
|
| Back to top |
|
 |
DaMa
Joined: 09 Nov 2001 Posts: 15
|
24 May 2003 20:27 bitmap lcd |
|
|
|
|
Program to control a T6963C-based 240x64 pixel LCD display
using the PC's Parallel Port (LPT1:) in bidirectional mode
written in Microsoft Quick C
|
|
| Back to top |
|
 |
ME
Joined: 14 Mar 2002 Posts: 1523 Helped: 13
|
24 May 2003 20:33 graphic lcd bitmap generator |
|
|
|
|
| http://www.avrfreaks.com/phorum/read.php?f=3&i=42118&t=42118#42118
|
|
| Back to top |
|
 |
amtalan
Joined: 24 Jul 2001 Posts: 39
|
27 May 2003 10:18 graphic lcd bitmap |
|
|
|
|
Go to
http://www.ucos-ii.com/
and have a look at uC/GUI, they are a lot of well structured C writen libraries, they can write on an LCD letters, numbers with different fonts and also bitmaps.
A.
|
|
| Back to top |
|
 |
Dark Angel
Joined: 18 Jan 2002 Posts: 29
|
27 May 2003 23:12 lcd bmp |
|
|
|
|
Thanks for the help.
The files from http://www.indata.si/grega/ really helped me out togeter with the instructions from Direnc.
For now the bmp is working on the total display.
Next thing to learn is how to put a small bitmap on a position on the lcd.
Thanks for the links and help from everybody.
|
|
| Back to top |
|
 |
ME
Joined: 14 Mar 2002 Posts: 1523 Helped: 13
|
28 May 2003 11:25 bitmap converter lcd |
|
|
|
|
| Dark Angel wrote: |
At this moment i'm using an atmel 8515 with avr-gcc compiler.
After testing/learning i want to use it with a HC12.
But any example is welcome. Most examples in the net are for the character displays. |
Here's an AVR Graphic LCD example written with ImageCraft ICC Compiler: http://pages.infinit.net/hc1x/AVR/GraphLCDLibrary/GraphLCDLibrary.htm
Main page: www.microsyl.com
|
|
| Back to top |
|
 |
Google AdSense

|
28 May 2003 11:25 Ads |
|
|
|
|
|
|
| Back to top |
|
 |
svicent
Joined: 11 Jul 2001 Posts: 413 Helped: 23
|
28 May 2003 17:05 bmp to glcd |
|
|
|
|
Go to www.fastavr.com.
You can download the FastLCD utility.
Regards,
|
|
| Back to top |
|
 |
ME
Joined: 14 Mar 2002 Posts: 1523 Helped: 13
|
28 May 2003 17:13 glcd bitmap picture |
|
|
|
|
| svicent wrote: |
Go to www.fastavr.com.
You can download the FastLCD utility.
Regards, |
This is for Basic and not C as he is using.
|
|
| Back to top |
|
 |
zb7401
Joined: 08 Jul 2002 Posts: 9
|
02 Jun 2003 9:16 bitmap to glcd |
|
|
|
|
| TURN HTE BMP TO DAT THAT the lcd can print on! it is 8bit data!see the lcd documentS and Settings!
|
|
| Back to top |
|
 |
lta2
Joined: 05 Oct 2007 Posts: 2
|
07 Dec 2007 16:24 fastlcd |
|
|
|
|
| HI ALL,CAN YOU HELP ME?I HAVE A GLCD 64X128 WITH LABEL SC12864J4 , BUT I DIDN'T SEARCH THE DATASHEET OF IT .WHO HAVE SEND ME PLEASE THANH
|
|
| Back to top |
|
 |
MrChips
Joined: 31 Dec 2007 Posts: 16
|
31 Dec 2007 14:47 lcd bmp converter |
|
|
|
|
Turn off your caps is shoooooooooouting ,
This post is 4.5yrs old   .
To place bmp on glcd either write your own code basic/c/asm etc etc or find bmp converter.
|
|
| Back to top |
|
 |
super_eng7269
Joined: 01 Jan 2008 Posts: 1
|
01 Jan 2008 21:12 bitmap graphic lcd |
|
|
|
|
| thank for all
|
|
| Back to top |
|
 |
Bernaco
Joined: 16 Jan 2008 Posts: 8
|
16 Jan 2008 15:54 bitmap glcd |
|
|
|
|
Hello to all !
For graphic designs for graphic monochrome LCD Modules up to 240 x 128 pixels, based on bitmap files or jpeg pictures files , please visit bitmap2LCD.com
A freeware beta release of bitmap2LCD will be ready for download at the end of Janaury 2008.
A configurable table of constants is generated in a header file for the C compiler and it offers painting and text writing features.
Best regards
|
|
| Back to top |
|
 |
crespo
Joined: 19 Jun 2008 Posts: 1
|
19 Jun 2008 11:27 bitmap graphic lcd |
|
|
|
|
hi iam using lcd JHD24064 with controller T6963c
iam want to display a bmp on lcd
pls help
|
|
| Back to top |
|
 |
Nimish
Joined: 07 Oct 2007 Posts: 32 Helped: 1
|
19 Jun 2008 19:17 fastlcd download |
|
|
|
|
You can put BMP to an LCD using Z_bmp to hex
.Step by step procedure on http://lcdinterfacing.googlepages.com/nokia3310
|
|
| Back to top |
|
 |
mostafahk
Joined: 28 May 2008 Posts: 19 Helped: 2 Location: tehran
|
|
| Back to top |
|
 |
nrs8010246
Joined: 08 Nov 2008 Posts: 1
|
08 Nov 2008 14:44 glcd bitmap to hex converter ccs |
|
|
|
|
| svicent wrote: |
Go to www.fastavr.com.
You can download the FastLCD utility.
Regards, |
I tried FastLCD and LCD Assistant. All i am getting out of the bitmap is an array full of zeroes. what could be the problem ?
|
|
| Back to top |
|
 |
Bernaco
Joined: 16 Jan 2008 Posts: 8
|
06 Feb 2009 16:15 bitmap for lcd |
|
|
|
|
You can also try the latest release of bitmap2LCD freeware
Browse to the download section of the http://bitmap2LCD.com website.
|
|
| Back to top |
|
 |
Nimish
Joined: 07 Oct 2007 Posts: 32 Helped: 1
|
05 Nov 2009 5:40 Re: fastlcd download |
|
|
|
|
| Nimish wrote: |
You can put BMP to an LCD using Z_bmp to hex
.Step by step procedure on http://lcdinterfacing.googlepages.com/nokia3310 |
new link is http://www.lcdinterfacing.info/Nokia-3310-LCD-Interface.php
|
|
| Back to top |
|
 |