Big Characters
att_jay
Posts: 10
Hello
As jus new to be working with LCD displays like
http://www.sparkfun.com/products/256
Please give me an idea how to enable the big numeric digits e.g. 0, 1 ...9 that uses 4 lines and fills the entire display with 4 numeric digits.
I am lookingfor some Spin object that can do so for me. I have checked that display ROM does have some built in character library but that works only for standard digit only not for big digits which I am looking for.
Any help in this regard would be highly appreciated.
Cheers
Jay
As jus new to be working with LCD displays like
http://www.sparkfun.com/products/256
Please give me an idea how to enable the big numeric digits e.g. 0, 1 ...9 that uses 4 lines and fills the entire display with 4 numeric digits.
I am lookingfor some Spin object that can do so for me. I have checked that display ROM does have some built in character library but that works only for standard digit only not for big digits which I am looking for.
Any help in this regard would be highly appreciated.
Cheers
Jay
Comments
Displays like that, based on the ubiquitous Hitachi HD44780 controller, have a means to define a small number of custom characters. This facility can be used to advantage to build block graphics, from which the large numerals that span four lines can be defined. I'm sure that's how the chip that erco recommended does it; and it's how you could do it, too, within your Propeller chip, if you were inclined to dig into the programming. It all depends upon your objective: quick solution vs. learning experience.
-Phil
Just give me an idea to start from....
Thanks
Jay
Cheers
jay
Edit: I just checked the Obex and there doesn't seem to be any object that supports that... Maybe i will make one in my spare time(When i am not learning C:))
You should also keep in mind that those 8 custom characters can be changed on the fly by your software...
Yes I am actually working in 8 bit parallel mode, where I am passing byte to the I/O port of LCD display. I want to display only 4 big numeric digits 0...9 evenly spaced that covers the LCD display ( 20x4).
I would highly apprecitae any kind of help in this regard.
Cheers
Jay
Can you please send me the example code of this?
Thanks
Jay
lookup (number)(eeprom location+number)
output lcd(char1,char2,char3,char4)
then in your eeprom table just list the custom characters. Of course this isn't working code, but I'm thinking this is how you would do it
A search at the index here will bring up some options.
http://forums.parallax.com/showthread.php?124495-Fill-the-Big-Brain&p=977025&viewfull=1#post977025
and I found this link
#344
http://forums.parallax.com/showthread.php?124495-Fill-the-Big-Brain&p=982331&viewfull=1#post982331
Thanks Shawn,
Could you please send me an example code that helps me in wirting some customized characters/shapes in eeprom and then display it on LCD for showing Big digits like e.g. 0, 1 etc.
Thanks
Jay