I wanted to use the cigarette lighter receptacle of a car as the power supply for the Arduino Mega. From 12 V, I will convert it to a 7 V supply, but my problem is, what must be the minimum current or electrical power to be fed into the Arduino Mega?
And are there any things I have to do to the Arduino Mega 2560 for it to function well in supplying it a 7 volts supply from a car?
-
1Also see Powering Arduino with car batteries, and Arduino Forum's Arduino Idle Current draw? and Power Consumption Arduino and Gammon's page about power-saving techniques for the Atmega328PJames Waldby - jwpat7– James Waldby - jwpat72014年09月24日 14:48:39 +00:00Commented Sep 24, 2014 at 14:48
1 Answer 1
The Arduino's voltage regulator is rated for a suggested input range of 7 to 12 volts. Automobile power will range from slightly below 12 volts to over 13 volts, so stepping it down to 7 volts is a good idea.
Looking at the data sheet it doesn't say how much current it draws. Since it uses a linear power supply it will likely draw the same amount of current regardless of the input voltage, and simply waste the power from a higher input voltage as heat.
The power from a car cigarette lighter should have plenty of current, so your proposed setup should work just fine. Is your 7 volt supply regulated?
Note that you could also use a "buck" style switching power supply to feed 5 volts directly into the 5V line. There are several buck style power supplies on the market for less than 10ドル US that will provide up to 3A of regulated 5 volts.
-
Recommended voltage is 7-12V, maximum is 6-20V. So 13V would still be fine (though wasteful).Gerben– Gerben2014年09月20日 20:59:35 +00:00Commented Sep 20, 2014 at 20:59
-
Is stepping down the 12V to 7V and limiting it to 2Amperese already sufficient for the Arduino Mega 2560? Can it run 4 different UARTS, where these 4 different shield also get its power sources from the 5 V of the Arduino?weyhei– weyhei2014年09月24日 11:54:11 +00:00Commented Sep 24, 2014 at 11:54
-
@Gerben - automotive power is not limited to 13v. In fact it's notoriously variable (lower and much higher) and electrically grungy, for example when the engine is running (or worse, starting).Chris Stratton– Chris Stratton2014年10月21日 15:46:22 +00:00Commented Oct 21, 2014 at 15:46
-
The input filter caps are rated for 16V, so putting an Arduino on the automotive supply directly is a very bad idea.Ignacio Vazquez-Abrams– Ignacio Vazquez-Abrams2014年12月19日 23:01:32 +00:00Commented Dec 19, 2014 at 23:01