1

I hooked my Arduino UNO to one of the USB port of my rpi3.
The Arduino itself power a small light sensor, later on i plan on adding LCD display, LEDs, etc
Can the pi handle it without any fuss ?

My project is time sensitive.
I tried separating the power source, and feed the Arduino by another supply.
And then use the pi Tx/Rx, to communicate with the Arduino by serial.
It just added more complexity to a rather simple setup.

My setup:
rPi3 powered by a 2A supply
Sensor hooked to Arduino pins(+5v, GND, A0 pin), consumes 4mA
Arduino hooked to rPi by USB

Wadaane
  • 163
  • 1
  • 11

1 Answers1

2

I routinely run Arduino from USB ports on the Pi, although you can also use the 5V pin on the header to supply power.

The Pi can supply 600mA (at least) from USB and up to 1A from the 5V pin (given an adequate power supply) so should have no problem running any Arduino. If the project will run from the Arduino power the Pi will be OK.

See Raspberry Pi Power Limitations

Milliways
  • 59,890
  • 31
  • 101
  • 209