Electronic – arduino – volt management for a big circuits (mother board if you will)

amperagearduinomicrocontrollerpower supplyvoltage

I've to have a 2 Ardunio and 1 Netduino in a board, they are connected to +100 component. All I need is less than 5A so I bought a 12v 6A power supply and need to ask some questions so I avoid doing anything stupid.

  1. Is it safe to take a 5V (after passing the 12V to 7805 or some other way to get 5V) and give it to the 2 Arduino and the 1 Netduino?
  2. Is it better to give each component it's own fuse or should I just use fuses for major parts?
  3. I can give each component it's rated voltage and the current will be given to each component as it needs from the power supply knowing that I should not take more than 40mA from the Arduino pins, am I right ?

Sorry but this project is major and I'm more of programmer than electrical engineer 🙂

Best Answer

1) Yes, generally speaking it should be fine to send the 5V to the arduinos and netduino, unless any of them have ADCs or DACs that you intend to use and that are sensitive to voltage source fluctuations. Note that in any case you should include a capacitor at the voltage input pin to each chip. Use wires/traces that are thick enough to transfer the current that you need, and best not to put the chips in series along a single power line (unless the power line is sufficiently large to minimize the voltage drop along it.

2) I've only ever needed to put a single fuse at the input of the entire circuit board. I wouldn't expect any average use-case to need more fuses than that unless you're worried about some IC drawing too much current or feeding the power supply to a daughter board.

3) Correct, as long as you keep the current below what your voltage regulator is rated for. Note that if you are drawing 5A and plan to use the 7805, then you're going to burn (12V - 5V) * (5A) = 35W just in the regulator. You'll need a beefy heat sink. A switching DC-DC converter might be better for this case.

Related Topic