Small 8x8 matrix driver?

Ok, The McGyver in me just had to know if you can really sand down a chip to that sort of thickness.

So I grabbed a dead MZX7219 and some sand paper, and... yes you can!

I easily got it under 2mm thick (actually 1.85mm) without exposing any silicon. With a 0.8mm PCB that meets your "under 3mm" goal.

It's probably not a good way to do it if you want to make a lot of them, but it can be done. :slight_smile:

Sweet, its good to know that I can be done! But i'm going to go with the atmega method. Since it is meant to be a production thing (hopefully). And im actually doing a layered pcb assembly à la EEV Blog so its going to be two .8mm pcbs, with a 1.6mm pcb core. The core will have all the places for the ICs and other parts milled out. And the Top and bottom will make it look good, also all of the parts will be on the top pcb. Then ill stick them all together with double sided tape (2mm around the perimeter of the board).EEVblog #130 - The µCalc Credit Card Scientific Calculator / Computer - YouTube

Yeah, I wouldn't use that circuit either then. That is going to raise the cost quite a bit. I think about this stuff from a hobbiest point of view that I can get 4 or 6 of anything as samples and if I need to buy a few more that isn't going to break the bank - all because I make these things quantity 1 or 2.

Exactly, with the atmega, I can get the for about $3 from digikey, so its really great.

Yup
$2.43

Same at mouser

CrossRoads:
Yup
$2.43
http://www.digikey.com/product-detail/en/ATMEGA168A-AU/ATMEGA168A-AU-ND/2271188
Same at mouser
http://www.mouser.com/ProductDetail/Atmel/ATMEGA168A-AU/?qs=sGAEpiMZZMvqv2n3s2xjse40PngS4U1xVADwi5G8n9Y%3D

$1.36 in the quantities he is talking about if this makes it to production. Atmel prices their product pretty darn reasonable if you ask me.

JoeN:
$1.36 in the quantities he is talking about if this makes it to production. Atmel prices their product pretty darn reasonable if you ask me.

Yep. The ATmega is probably cheaper then the MAX7219.

I bought a dozen ATtiny84s from Farnell las week for 94 cents each (Eurocents). They want 10 Euros for a single MAX7219.

Yep you really cant compare the two in terms of price. If/when I do finish the project, ill be sure to post the code so everyone else can take advantage of the cheaper driver.

The whole concept of buying max72xx now makes zero sense to me.

Those guys go out of the market for a (very good) reason.

dhenry:
The whole concept of buying max72xx now makes zero sense to me.

Those guys go out of the market for a (very good) reason.

Well there is an advantage to it, especially in very large quantities, and thats the fact that you don't have to program an extra MCU. But yes, cost (and possibly even feature wise) the atmega is the clear way to go.

Not so clear - say your application called for DIPs instead of surface mount.
taydaelectronics.com has MAX7219 in DIP for $1.25. I just bought 8, shipping was $1.80. Order also included 20 panel mount power jacks, 4 toggle switches, and a mess of resistors.

vs $2.78 (qty 25) for lowest priced 168 in DIP

and $1.59 at digikey

both charge something like $6.95 for lowest priced shipping.

Hmm...good point, though I don't know how reliable they would be in orders of 100. Then again, they might be great. It's too bad they didn't make one of the MAX72xx's in a smaller package...

It is available on 24-pin wide SO surface mount package - its just a little thicker than you wanted.

Or as bare die if you wanted it really thin.

CrossRoads:
It is available on 24-pin wide SO surface mount package - its just a little thicker than you wanted.

Or as bare die if you wanted it really thin.

A bare die would be great, though how would I go about soldering that (or having it soldered for me) in a cost effective and simple way?

Edit: I just did some googling, and it I think the bare die would be overkill for this little production run.

It's too bad they didn't make one of the MAX72xx's in a smaller package...

I wonder why that's the case, ...

Another advantage might be interface speed.
MAX7219/7221 can receive data at 10 MHz. I use mine at default SPI settings which I think is 4 MHz.
If your main processor was really tied up and you wanted to send stuff out at 8 MHz to get it out of the way quick. The master can do that, I think testing has has shown a 168/328 cannot receive that fast tho due to the slave having to sample (the CS pin?) or something along those lines.

CrossRoads:
Another advantage might be interface speed.
MAX7219/7221 can receive data at 10 MHz. I use mine at default SPI settings which I think is 4 MHz.
If your main processor was really tied up and you wanted to send stuff out at 8 MHz to get it out of the way quick. The master can do that, I think testing has has shown a 168/328 cannot receive that fast tho due to the slave having to sample (the CS pin?) or something along those lines.

Yeah, ideally that would be the way to go. But size and cost are really the most limiting factor.

a 168/328 cannot receive that fast tho due to the slave having to sample (the CS pin?)

True, when implemented poorly.

True, when implemented poorly."

False - max speed is a hardware function, not something users have any implementation control over:

"In SPI Slave mode, the control logic will sample the incoming signal of the SCK pin. To ensure correct sampling of
the clock signal, the minimum low and high periods should be:
Low periods: Longer than 2 CPU clock cycles.
High periods: Longer than 2 CPU clock cycles."

Still though, shouldn't 115200 baud serial be fast enough for this application?