Raleigh, NC.
Offline
Full Member
Karma: 0
Posts: 129
Addicted to Arduino
|
 |
« on: December 12, 2012, 09:04:48 am » |
so...4 max7219's, 4 8x8 martrices, 4 100 uF caps, 4 0.1 uF caps and 4 27 K ohm resistors later...
|
|
|
|
|
Logged
|
|
|
|
|
Raleigh, NC.
Offline
Full Member
Karma: 0
Posts: 129
Addicted to Arduino
|
 |
« Reply #1 on: December 12, 2012, 09:06:24 am » |
Oh yes and my arduino Nano.....
code is attached too...
find the max7219 playground schematic and have a good pinout for the matrix before you start connecting them...know the rows and columns...
|
|
|
|
|
Logged
|
|
|
|
|
Norfolk UK
Offline
Edison Member
Karma: 23
Posts: 1320
|
 |
« Reply #2 on: December 12, 2012, 09:11:01 am » |
Is it meant to have that pixel column effect on each 8x8 matrix as it scrolls? Other than that it looks good.
|
|
|
|
|
Logged
|
|
|
|
|
Valencia, Spain
Online
Edison Member
Karma: 65
Posts: 2241
|
 |
« Reply #3 on: December 12, 2012, 09:20:21 am » |
Is it meant to have that pixel column effect on each 8x8 matrix as it scrolls?
It looks like the columns are off by one. A little software tweak should fix that, no problem... Other than that it looks good.
Yep. Nicely laid out and plenty of capacitors! PS: You could maybe put the resistors all facing the same way though... 
|
|
|
|
|
Logged
|
|
|
|
|
Raleigh, NC.
Offline
Full Member
Karma: 0
Posts: 129
Addicted to Arduino
|
 |
« Reply #4 on: December 12, 2012, 12:21:27 pm » |
Ya I noticed the column effect....to me, its good to go..i have worked on this thing forever....One of these days, I want to make the 64 x 8 matrix...easy enough..just cascade more max7219s....just gotta get a large enough PCB
|
|
|
|
|
Logged
|
|
|
|
|
Raleigh, NC.
Offline
Full Member
Karma: 0
Posts: 129
Addicted to Arduino
|
 |
« Reply #5 on: December 12, 2012, 12:23:37 pm » |
Hey Fungus,
You mention a little software tweak can fix the effect......can you check out my code in a thread above and show me maybe where it can fix it please?
|
|
|
|
|
Logged
|
|
|
|
|
Norfolk UK
Offline
Edison Member
Karma: 23
Posts: 1320
|
 |
« Reply #6 on: December 12, 2012, 12:32:40 pm » |
I have altered a version of a scroll program you did try that was hard coded for just 2x matrix displays so it will scroll on 4 displays but don't have hardware to test it on. Fancy giving it a try and letting me know if it works? I have attached it in case you do.
|
|
|
|
|
Logged
|
|
|
|
|
Raleigh, NC.
Offline
Full Member
Karma: 0
Posts: 129
Addicted to Arduino
|
 |
« Reply #7 on: December 12, 2012, 12:42:44 pm » |
Just uploaded it.....no difference in this compared to the video I posted....
|
|
|
|
|
Logged
|
|
|
|
|
Norfolk UK
Offline
Edison Member
Karma: 23
Posts: 1320
|
 |
« Reply #8 on: December 12, 2012, 12:53:43 pm » |
Just uploaded it.....no difference in this compared to the video I posted.... Hmm, if it's scrolling across all 4 matrix displays now instead of just the two it did before and it still looks the same as the version in your video then maybe the matrix is not wired quite right. Can you slow down the scroll speed using either sketch (mine you increase 'const long scrollDelay = 70;') and video it again.
|
|
|
|
|
Logged
|
|
|
|
|
Raleigh, NC.
Offline
Full Member
Karma: 0
Posts: 129
Addicted to Arduino
|
 |
« Reply #9 on: December 12, 2012, 01:03:16 pm » |
Yes, the delay lets it slow down......and I'm beginning to think you're right about the matrices not being wired quite right....I bought them on ebay...they have XH-1088BRW on the side of them....
This is what I have for reference but I'll look better for a good datasheet..
The picture is attached....
|
|
|
|
|
Logged
|
|
|
|
|
Norfolk UK
Offline
Edison Member
Karma: 23
Posts: 1320
|
 |
« Reply #10 on: December 12, 2012, 01:17:52 pm » |
|
|
|
|
« Last Edit: December 12, 2012, 01:21:27 pm by Riva »
|
Logged
|
|
|
|
|
Raleigh, NC.
Offline
Full Member
Karma: 0
Posts: 129
Addicted to Arduino
|
 |
« Reply #11 on: December 12, 2012, 01:18:39 pm » |
I am making a new layout by manually checking the rows and columns using a power suply to see them illuminate.....
I'l update you soon..I already found R6 / C6 and R2 / C2 to be swapped.....
|
|
|
|
|
Logged
|
|
|
|
|
Norfolk UK
Offline
Edison Member
Karma: 23
Posts: 1320
|
 |
« Reply #12 on: December 12, 2012, 02:32:37 pm » |
Comparing your picture to the ebay drawing your rows look fine but columns are a bit mixed. I have put your pinout in last column. Best bet is to buzz the matrix out as your doing to be sure. PIN R/C Your Picture 01 = R5 r5 02 = R7 r7 03 = C2 c7 04 = C3 c6 05 = R8 r8 06 = C5 c4 07 = R6 r6 08 = R3 r3 09 = R1 r1 10 = C4 c5 11 = C6 c3 12 = R4 r4 13 = C1 c8 14 = R2 r2 15 = C7 c2 16 = C8 c1
|
|
|
|
|
Logged
|
|
|
|
|
Raleigh, NC.
Offline
Full Member
Karma: 0
Posts: 129
Addicted to Arduino
|
 |
« Reply #13 on: December 12, 2012, 04:13:40 pm » |
Thanks for that....Nice find...I'll do some switching around soonish and update the forum...
|
|
|
|
|
Logged
|
|
|
|
|
Raleigh, NC.
Offline
Full Member
Karma: 0
Posts: 129
Addicted to Arduino
|
 |
« Reply #14 on: December 13, 2012, 11:27:47 am » |
Riva,
so I built just a small quick 8 x 8 with a max7219 using my Uno using the pinout you found....
didn't go so well.....the letters scrolled but were upside down and backwards.....
thats what I hate about these matrices ..they can go in anyway and especially with how the code is written can make them flip all over the place.....Oh well it works good enough for me
|
|
|
|
|
Logged
|
|
|
|
|
|