Can Arduino (UNO) "pass thru" external power to my project?

Hello,
I am using an UNO to power my light display which uses external 2A USB (wall wart) power. I know that I can power my display directly with 2A USB, share ground with the UNO, and also power the UNO by tying my external USB power to the 5V pin on the UNO.

BUT, it would be simpler if I could do this:

Power my UNO directly via the 2A USB wall wart, then tap off power from the UNO to my project (5v and ground). In effect, I want the UNO to be powered off the wall wart and then be able to tap off power from the UNO to my project (presumably from the 5v pin). Is this possible?

Thanks!

Please don't !

The board is only able to supply a very limited amount of current.
Circuits and devices that may use more than the board can handle are often the culprits in damaging a board.

A schematic of your requirements would also help a great deal.
Take a wander through the links below please.

Could you take a few moments to Learn How To Use The Forum

It will help you get the best out of the forum in the future.

  • Your OS and version can be valuable information, please include it along with extra security you are using.
  • Always list the version of the IDE you are using and the board version if applicable.
  • Use quote or add error messages as an attachment NOT a picture.
  • How to insert an image into your post. ( Thanks @Robin2 )
  • Add your sketch where applicable but please use CODE TAGS ( </> )
  • Add a SCHEMATIC were needed even if it is hand drawn
  • Add working links to any specific hardware as needed (NOT links to similar items)
  • Remember that the people trying to help cannot see your problem so give as much information as you can

COMMON ISSUES

  • Ensure you have FULLY inserted the USB cables.
  • Check you have a COMMON GROUND where required. ( Thanks @Perry)
  • Where possible use USB 2.0 ports or a USB 2.0 POWERED HUB to rule out USB 3.0 issues.
  • Try other computers where possible.
  • Try other USB leads where possible.
  • You may not have the correct driver installed. CH340/341 or CP2102 or FT232 VCP Drivers - FTDI
  • There may be a problem with the board check or remove your wiring first.
  • Remove any items connected to pins 0 and 1.

COMPUTER RELATED

  • Close any other serial programs before opening the IDE.
  • Ensure you turn off any additional security / antivirus just to test.
  • There may be a problem with the PC try RESTARTING it.
  • You may be selecting the wrong COM port.
  • Avoid cloud/network based installations where possible OR ensure your Network/Cloud software is RUNNING.
  • Clear your browsers CACHE.
  • Close the IDE before using any other serial programs.
  • Preferably install IDE’s as ADMINISTRATOR or your OS equivalent

ARDUINO SPECIFIC BOARDS

  • CH340/341 based clones do not report useful information to the “get board info” button.
  • NANO (Old Types) some require you to use the OLD BOOTLOADER option.
  • NANO (ALL Types) See the specific sections lower in the forum.
  • NANO (NEW Types) Install your board CORE’s.
  • Unless using EXTERNAL PROGRAMMERS please leave the IDE selection at default “AVRISP mkII”.
  • Boards using a MICRO usb connector need a cable that is both DATA and CHARGE. Many are CHARGE ONLY.

CREATE editor install locations.

  • On macOs ~/Applications/ArduinoCreateAgent-1.1/ArduinoCreateAgent.app/Contents/MacOS/config.ini
  • On Linux ~/ArduinoCreateAgent-1.1/config.ini
  • On Windows C:\Users[your user]\AppData\Roaming\ArduinoCreateAgent-1.1

Performing the above actions may help resolve your problem without further help.
Language problem ?
Try a language closer to your native language:

Thanks to all those who helped and added to this list.
[/quote]

Thank you. I figured this was a limitation, and thanks for confirming it!

Best wishes,
Greg

Actually, another solution would be to always power my UNO externally, then use a modified "data only" cable when programming. I think that would solve my problem.

Greg

A good question at the right place in a project. You have gotten several answers which probably will save you from purchasing more Arduinos although the sales people would love to sell them. A simple rule I follow is "The Arduino a Power Supply it is NOT!". You can tap power off the UNO for your project but it can only supply a small amount, do not go to the max. With the 5V wall wart you can connect to that without going through the Arduino great. I like to use 7-12V input via Vin, this gives me a more stable system especially when using the A/D because of the extra filtering and load surges do not appear on the power lines to the micro because hardware is powered externally from the Arduino.

Thanks for the suggestions. My goal is to minimize the effort to go back and forth from "standalone" operation to "programming and development" mode. After thinking about it some more, I believe powering everything off of the external supply, including the Arduino, is my best bet. (Note that since I am using a 2A USB wall wart, power TO the Arduino would be through the 5v pin). Then when bouncing back to programming mode, I'll plan to use a dedicated (hacked) "signal only" usb cable to the Arduino. That way, I don't have to deal with any re-wiring hassles.

Greg