Take the 2-minute tour ×
Electrical Engineering Stack Exchange is a question and answer site for electronics and electrical engineering professionals, students, and enthusiasts. It's 100% free, no registration required.

My 7_segment Display

Is it possible to change colour of a 7-segment display using an Arduino Uno?

share|improve this question
3  
While the Arduino does a good job to make some things simple, it can't do magic. –  Rev1.0 Dec 2 '13 at 13:04
 
which 7 segment display? Datasheet? –  Phil Frost Dec 2 '13 at 16:30
add comment

closed as unclear what you're asking by Phil Frost, Daniel Grillo, Matt Young, PeterJ, Samuel Dec 2 '13 at 21:33

Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question.If this question can be reworded to fit the rules in the help center, please edit the question.

1 Answer

Most likely no, in any case not in software.

Displays like this are usually single color, some are dual color, at most. The colors are physical properties of the LEDs and can't be changed. If you want arbitrary colors you need a red-green-blue triplet of LEDs for each segment, and I've never seen any of those.

Like I said some displays are dual color, for instance red-green, and they will have two common connections (like common cathode), one for red and one for green. It's highly unlikely that the display you show will be dual color.

share|improve this answer
3  
1  
Googling for "RGB 7-segment" arduino leads to video and other relevant sources of information. You'll need multiple shift-registers to handle the 22 IO connections per digit. –  RedGrittyBrick Dec 2 '13 at 12:43
add comment

Not the answer you're looking for? Browse other questions tagged or ask your own question.