How much current can I draw from the Arduino’s pins?

What’s the maximum amount of current which I can draw from each of the Arduino’s pins without tripping any of the internal fuses? Is there a limit per pin as well as an overall limit for the whole board?

This is a bit complex. Basically, there are a number of limiting factors.

The IO lines from the microcontroller (i.e. the analog and digital pins) have both an aggregate (e.g. total) current limit, and an per-pin limit:

enter image description here
From the ATmega328P datasheet.

However, depending on how you define the Arduino “Pins”, this is not the entire story.

The 5V pin of the arduino is not connected through the microcontroller. As such, it can source significantly more power. When you are powering your arduino from USB, the USB interface limits your total power consumption to 500 mA. This is shared with the devices on the arduino board, so the available power will be somewhat less.
When you are using an external power supply, through the barrel power connector, you are limited by the local 5V regulator, which is rated for a maximum of 1 Amp. However, this it also thermally limited, meaning that as you draw power, the regulator will heat up. When it overheats, it will shut down temporarily.

The 3.3V regulated output is able to supply 150 mA max, which is the limit of the 3.3V regulator.


In Summary

  • The absolute maximum for any single IO pin is 40 mA (this is the maximum. You should never actually pull a full 40 mA from a pin. Basically, it’s the threshold at which Atmel can no longer guarantee the chip won’t be damaged. You should always ensure you’re safely below this current limit.)
  • The total current from all the IO pins together is 200 mA max
  • The 5V output pin is good for ~400 mA on USB, ~900 mA when using an external power adapter
    • The 900 mA is for an adapter that provides ~7V. As the adapter voltage increases, the amount of heat the regulator has to deal with also increases, so the maximum current will drop as the voltage increases. This is called thermal limiting
  • The 3.3V output is capable of supplying 150 mA.
    • Note – Any power drawn from the 3.3V rail has to go through the 5V rail. Therefore, if you have a 100 mA device on the 3.3V output, you need to also count it against the 5V total current.

Note: This does not apply to the Arduino Due, and there are likely some differences for the Arduino Mega. It is likely generally true for any Arduino based off the ATmega328 microcontroller.

Source : Stack Overflow

Share Button

By Rinaldo Jonathan

Admin of this site. Artis papan PCB. #zoneRinaldo #Controllerism Studio Demon, Stage Angel, Sleepy Developer, Smoke free. Kalkud SHS 2012, PCR G15.

Leave a Reply

Verified by ExactMetrics