|
Belgium6753 Posts
|
Do you really need a pc to be hooked up? How much variations do you want in the behavior of the lights? If much variation:
There exists IO port-cards for pc's. That way you can use your PC as an IO. If you hook up relays to the IO card, you have everything you need. You;ll only need some kind of software to operate the IO card, but i presume it comes with the IO card. No microprocessor needed.
Otherwise you can throw out the PC and go with the microprocessor. Pre program it via your pc, then hook it up with relays and it will be stand alone.
|
Have you looked at Arduino? (http://www.arduino.cc/).
I had to use it for one of my university projects. It's pretty cheap and relatively easy to code for.
|
Belgium6753 Posts
Whoa. Arduino is like the Processing of electronics
thanks <3
|
I'm not quite sure on what you're trying to accomplish yet. Correct me if something is different than what I interpret:
You want some kind of grid of lights that you can turn off and on to form different letters, kind of like how you turn different bars off/on for a 7-segment display to show a different number from 0 to F or whatever. How/when do you want the display to change which letters are showing?
I see the big picture problem being broken down into these parts:- Some logic/program to determine what letters you want to display, for how long, and when
- Some logic/program to map the input of desired letters into the output of which lights turn on/off
- Some way to turn the lights on/off
So how are you planning to power the lights? How would you turn them on and off? How is it right now that you envision the microcontroller physically turning on the lights? The processor chip itself will not be able to drive the light sources (like on a digital output pin, of course). And I don't know of lights that accept digital controls for on/off. Granted, my knowledge here is all from undergrad lab work in academia, so I'm sure there's all sorts of devices I don't know about.
You can amplify any signal out of the microcontroller, of course. But how do you amplify, and with what? Anyhow, I'm just telling you to that the output stage deserves some more attention!
Good luck.
|
You said "probably USB", could this be also LPT? It's way, way easier to program (just set a voltage to each pin separately, google how to do it), less likely to broke (USB brokes really easily if used slightly differently than should be used), and if you have less LEDs than LPT pins then you also don't need any kind of controller, just a resistor in series with each LED will be enough.
edit: obviously meant LEDs, not LCDs
|
|
|
|