12V 1.3 Amp battery to arduino

Thread Starter

Chetan_Jadhav

Joined Mar 2, 2017
52
Hi,
I want to power the Arduino Uno board with 12V 1.3Amp battery but i am afraid that the board may get damaged.
Please provide any suggestions to do the same.
 

ScottWang

Joined Aug 23, 2012
7,504
The first thing is that you have to make sure the supply voltage of your arduino is 5v or 3.3v, if supply 5v then using a 7805, if supply 3.3v then using a LD1117-3.3V to be the voltage regulator.
 

Reloadron

Joined Jan 15, 2015
7,893
The board can be supplied with power either from the DC power jack (7 - 12V), the USB connector (5V), or the VIN pin of the board (7-12V). Supplying voltage via the 5V or 3.3V pins bypasses the regulator, and can damage your board.
That said most 12 volt batteries, for example a 12 Volt SLA Battery actually have a voltage of about 12.7 Volts or about 2.12 volts per cell so 2.12 * 6 = 12.72 when fully charged. In keeping things simple you could just place a few diodes in series where each diode will drop about 0.7 Volts. A common 1N4002 would work. This just makes sure you don't exceed 12 volts to the board.

Ron .
 

Reloadron

Joined Jan 15, 2015
7,893
The Arduino Uno much like the Arduino Duemilanove has onboard regulation for 5 volts. When running on USB the board draws its power from the 5 volt USB connection. When externally powered the board accepts a 7 to 12 VDC input on the power connector. Here is an example of the older Arduino Duemilanove board with the regulator identified:
Arduino Board Power.png

The newer board uses a 1750 Low Dropout Regulator, you do not feed the board an external 5 volts. This is why the suggested input is 7 to 12 VDC. Actually it uses a LD1117-50 Regulator. Feeding 5 volts into the external power input will not work as it requires 7 to 12 Volts per the manufacturer.

Ron
 

mcgyvr

Joined Oct 15, 2009
5,394
Pretty clear that most of these guys who responded have never used an Arduino before...

You can connect the battery directly to the "power in" jack or Vin/ground connections as the Arduino UNO already has a built in 5V regulator

Here are the specifications from the UNO..
Input Voltage (recommended) 7-12V
Input Voltage (limit) 6-20V

As 12V < 20V you can connect the battery without any external regulators,etc...
 

Reloadron

Joined Jan 15, 2015
7,893
Pretty clear that most of these guys who responded have never used an Arduino before...

You can connect the battery directly to the "power in" jack or Vin/ground connections as the Arduino UNO already has a built in 5V regulator

Here are the specifications from the UNO..
Input Voltage (recommended) 7-12V
Input Voltage (limit) 6-20V

As 12V < 20V you can connect the battery without any external regulators,etc...
Thank you and I never caught the 6 to 20 Volt. I only saw the 12 Volt under 7 - 12. Thanks again.

Ron
 
Top