idea for improvement

MiniPOV4 and previous versions

Moderators: adafruit_support_bill, adafruit

Please be positive and constructive with your questions and comments.
Locked
spiritracker
 
Posts: 38
Joined: Tue Dec 30, 2008 3:40 am

idea for improvement

Post by spiritracker »

Love the minipov. I'd like to see more color, though. Would it be possible to create a minipov4 with multi-color LEDs and modify the software to allow assigning of color to the individual blinks?

thanks,
Greg

sparr
 
Posts: 196
Joined: Tue Nov 04, 2008 5:21 pm

Re: idea for improvement

Post by sparr »

Yes, it would. Get to it. :)

Seriously though, I am working on a design for a narrower RGB minipov variant, for poi-like usage. Unfortunately my PCB-making skills leave a lot to be desired.

mtbf0
 
Posts: 1645
Joined: Sat Nov 10, 2007 12:59 am

Re: idea for improvement

Post by mtbf0 »

keep in mind that an rgb led has four leads, one of which connects to ground and the other three of which must be connected to pins on your microcontroller. that means that to control eight leds you'll need 24 outputs. also the green and blue leads will probably need upwards of, say, 3.4 volts. not really a project for an attiny2313 with a pair of aa's.

take a look at the spoke-pov. 32 leds through shift registers.

sparr
 
Posts: 196
Joined: Tue Nov 04, 2008 5:21 pm

Re: idea for improvement

Post by sparr »

I am considering a few options for the 8xRGB setup. Three shift registers would work, but would slow down the refresh significantly, which becomes a factor when trying to do PWM. I am leaning instead towards a 3x8 multiplexed configuration, with the AVR directly driving the anodes of each 'row' and driving an open sink FET for the cathodes of each 'column'. This allows for far faster updates (three PORT* writes instead of three SPI transfers) and eliminates components (one quad FET and no resistors*, instead of 3 shift registers and 3 resistor networks).

* My naive experimentation concludes that the AVR alone works for LED current limiting when driving a single LED from a single pin. With 3 column multiplexing that will be a max of 33% duty cycle at ~40mA, which any 20mA-nominal LED should handle just fine.

Locked
Please be positive and constructive with your questions and comments.

Return to “MiniPOV”