Arduino 5V and Vin

I got the Arduino Uno. As I understand, the Vin pin can be used to power the Arduino using a battery pack with voltage above 5V right? What is the exact voltage range?

Then, the 5V pin can be used as an output to apply 5V at a logic pin of a stepper driver board that needs 5V, right? What is the current limit?

Thanks

7v to 9v is a reasonable range that can be applied to Vin.

Voltage from the Arduino 5v pin can be used drive external circuitry but you must not draw too much current from the pin.
Suggest you keep current draw under 100mA.

Do not use the 5v pin to power motors.

Vin is allowed to be higher than 5v, but I think it might not be possible to use the 5v pin to power the motor.

The range of the vin pin is about 7 to 12 volts.
The 5 v pin can be used as logic reference but not power for the motor board.

Arduino Uno Rev3 — Arduino Official Store, scroll a little down and click on the tech specs. The closer to 7V the better, I use 9V adapters at occasion.

The 5V pin is either powered via the voltage regulator in which case the current limit is around 100 mA (as mentioned before). Or it is directly connected to the USB in which case the polyfuse on the Arduino limits it to 500 mA (see the Uno schematic).

Not safely, motors put out spikes and dips onto the power line, and typically draw lots more current than the 5V logic supply can handle.

Vin must be higher than 5V.

In my experience at least 6.7V to get proper regulation - though that depends on the exact regulator on the board you have.

The on-board regulator will dissipate heat equal to (Vin - 5)x current, so if you use
7V in you can draw more current than if you use 12V in - the regulator should simply shutdown if it gets too hot, but this is a limitation that can often bite people.

If you have lots of current draw in your circuit either use an external 5V regulator (on a heatsink?) or power from a suitably powerful 5V supply in the first place.

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.