Electronic – Custom LED control module for vehicle

automotiveled

I'd like to make a custom module to control the LED in my windshield but I don't know which parts I need.
Here's an example I've made in Javascript to show you exactly what I want
http://www.patriceguillemette.com/led-example.php

Best Answer

I assume you are new to electronics, so I would just point out probably the easiest way for you to make something like this:

  1. Arduino board - easy for newbies to program and implement some simple projects like yours.
  2. LEDs and resistors.
  3. Some MOSFETs, because you can't drive more than 40mA from microcontroller
  4. Power supply - probably you can run it with your car 12V battery, but anyway you should sit and think about current, voltages and other stuff.

And of course the knowledge how to use it. Just google about LED driving with Arduino, there are million articles about it.

You could of course do it all analog using different analog ICs, but if you don't have much experience with it it probably will take more time.

Related Topic