5x7 dot matrix display project?
wilsoe
Posts: 6
I have searched for this I promise.··For at least two days.· You·can laugh all you want but when you are done·could·you please point me in the right direction.
I am looking of an example project using 5x7 dot matrix displays.· I would like to multiplex four·displays.· Is this possible?· I have looked at the Maxim max6952 and max6953, but even there app notes do not seem it help.· Does anyone know of an example that would help to explain this more.· Also, if there is another method that would be great because the Maxim drivers seem to be hard to find.
Thanks
I am looking of an example project using 5x7 dot matrix displays.· I would like to multiplex four·displays.· Is this possible?· I have looked at the Maxim max6952 and max6953, but even there app notes do not seem it help.· Does anyone know of an example that would help to explain this more.· Also, if there is another method that would be great because the Maxim drivers seem to be hard to find.
Thanks
Comments
I just happened to have written some code that drives two 5X7 displays using the MAX6953. It requires a BS2P, because it uses the STORE command and the I2C command. It has a variable width font, which is stored in the second slot. It can easily be made to drive four digits.
HTH,
Jonathan
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
www.madlabs.info - Home of the Hydrogen Fuel Cell Robot
I don't think anyone will laugh at you.
If you've spent 10 minutes with google and 10 minutes searching this forum and you cannot find the answer than ask away.
That's my feeling anyway...
Bean.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
"SX-Video·Module" Now available from Parallax for only $28.95
http://www.parallax.com/detail.asp?product_id=30012
"SX-Video OSD module" Now available from Parallax for only·$49.95
http://www.parallax.com/detail.asp?product_id=30015
Product web site: www.sxvm.com
Those that would give up freedom for security will have neither.
·
Thanks
I know what you mean.· But I though I would get burned with lots of examples that I could not find myself.· I always hesitate to ask for help and it ends up taking me allot longer to learn something basic.
Thanks
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
·1+1=10
I checked out the app notes for the MAX6954 and it·looks like it is·designed for 16 digits 7-segment, 8 digits 14-/16-segment LED·displays.· This is the same problem as before I really do not understand how to use this on a 5x7 dot matrix display.
Thanks
I actually got my 6953 as a sample, so I don't know where to get one off hand. I don't have a schematic, I just used the MAX app. note and the display data sheet. If you have any problems with the connections, let me know. I very much reccomend breadbaording this project first to get it all runnning. If the code doesn't make sense, let me know and I'll do what I can to explain.
Jonathan
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
www.madlabs.info - Home of the Hydrogen Fuel Cell Robot
Using a few 74hc595's to drive your dot matrix display?
The project uses (10) 5 x 7 LED array's driven by (10) 74HC595 shift registers and (5) 2N2222A transistors using a Gameboy's serial port running at 512 KHz.
Note the article is not on-line - you'll need to purchase the back-issue
I also just·asked for a sample.· I was just wondering where to purchase.· I guess you are right to just try from the max app notes.· But I was just looking for a sample application,·schematics or descriptions.· I guess I am spoiled with the Parallax books.
Thanks
It's easier than it looks. While there are many connections, they aren't that hard to figure out. I like the MAX6953, it has some nice feature like dimming that you don't get if you use shift registers. For example, I have a CDS cell on my sign, it auto dims the sign at night, at makes it brighter during the day. You can also use it on bi-color displays. Let me know if you have any problems, I'd be happy to help.
Jonathan
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
www.madlabs.info - Home of the Hydrogen Fuel Cell Robot
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
·1+1=10
Because the LED's are in a Matrix, you need to scan one line at a time.· I created a program to fill the EEPROM with a pattern (In this case, a "$") and display it one line at a time on the LED display.
Since the Matrix is 10x14...The first 74595(or LED driver) drives the first 8 Rows.· The second 74595 drives the last 2 rows, and first 6 columns.· The third 74595 drives the last 8 columns.
the code is attached.