24

I read that the current should be at least 700 mA. I plugged a power supply with output current of 550 mA, and it seems to work fine. Can something happen to my Raspberry Pi? Does a wrong current influence the performance?

Peter Mortensen
  • 2,004
  • 2
  • 15
  • 18
  • So iv been having trouble with the wifi dongle on my pi A friend who is a linux fiend insists it could be a power issue Currently in using a sony ericcson 750mA power supply and using a wired keyboard with touchpad and an Edimax wireless dongle But the wifi dongle isnt working If i load the pi with it in the usb slot it doesnt recognise it yet if i load it without, it notices exactly whats there but is unable to run it Unfortunately im a linux virgin and some keen help or direction would be greatly appreciated =P – Chesh Williams Aug 13 '12 at 22:48
  • Have you tried using a USB powered hub? That would take the USB Wifi power loads off the RPi. – Hellonearthis Aug 14 '12 at 05:02
  • Why not just use a regular 2500 mA power supply? – SDsolar Jan 10 '17 at 02:27

6 Answers6

26

The 700 mA recommendation errs on the side of caution.

The Raspberry Pi itself needs around 400 mA. Powering a typical basic keyboard and mouse needs another 100 mA or so. You should be fine. But if you plug anything in that needs some serious power like a Wi-Fi adapter, keep in mind that you may be pushing the limits of your power supply.

Peter Mortensen
  • 2,004
  • 2
  • 15
  • 18
Nick McCloud
  • 1,156
  • 10
  • 9
  • I accepted this answer, because I find it to be the most precise. By the way, how did you figure out that Pi needs 400mA? – Alessandro Cosentino Jun 14 '12 at 00:05
  • 2
    I used an ammeter! – Nick McCloud Jun 22 '12 at 15:35
  • 1
    Also note that it's very important what voltage you will get at specified current. In many power supplies, voltage drops when you draw more current. Especially when you are near limits. So if you get stable 4.75V at 500mA, that may be fine. But if you get lower voltage, things may start to work badly. And you never know what the voltage will be in particular power supply model until you check. Even some 1500mA models cant get good voltage no matter how small the current is. – Krzysztof Adamski Aug 14 '12 at 05:54
10

One of the most annoying problems you can have with an underpowered supply is that it works fine until something draws a little bit too much current, then the supply dips, just briefly, and corrupts the RAM. A few seconds or minutes later, that corrupted RAM location is read (wrong) and some part of a program goes wrong.

It can be a nightmare to track down!

Martin Thompson
  • 447
  • 3
  • 11
7

Most likely some USB peripherals will not work because they will not have adequate power. Do you have a keyboard and mouse connected? If so you may have been lucky to find ones with low power requirements (please list them on this wiki page!)

I am also guessing you do not have a USB hub or flash drive connected. There is a good chance that they will fail to work (and possibly crash the Pi.)

finnw
  • 5,790
  • 3
  • 32
  • 42
  • Hi. thanks for the quick answer. I do have a keyboard, and a mouse connected. They are very basic by Logitech. And you are right, I don't have anything fancy connected. – Alessandro Cosentino Jun 12 '12 at 21:40
1

I can also report my Pi works fine in the above scenario (this is with just a normal keyboard / mouse attached, nothing fancy). If you start adding more current drawing peripherals to the USB ports you may start to notice issues.

You do technically run several risks this way, which may range from everything from minor stability issues to permanently damaging the Pi or the powering device (I'd say unlikely, but possible - it all depends on the tolerances involved.)

berry120
  • 10,924
  • 10
  • 51
  • 62
  • 1
    I cannot imagine that being underpowered would cause permanent damage (that would be a very poor design!) – finnw Jun 12 '12 at 21:40
  • @finnw I agree it would be very unlikely and down to incredibly poor design, but as it is technically possible I wanted to put it out there either way. – berry120 Jun 12 '12 at 21:41
0

The 400 mA minimal cited by Nick McCloud seems to be right. I just plugged my Raspberry Pi on a 300 mA power supply and it booted, but I noticed that it couldn't power the Ethernet interface (the Ethernet LEDs started to power on and off every second or so).

Peter Mortensen
  • 2,004
  • 2
  • 15
  • 18
hdiogenes
  • 101
  • 2
  • using 300mA power supply is pointless, if you are going to do anything useful besides watching POWER LED going on and off. – lenik Jul 03 '14 at 05:52
0

One problem you may run into with insufficient power is memory card corruption. SD cards can draw significant power on writes (relative to reads), and the amount of power used while writing varies a lot between different models of card. Thus, someone else using the same configuration except for the card may get along just fine with a power supply that wouldn't provide enough power for you.

You can get small meters that fit in-line in your USB power connection that will show how much current is being used, and this can be helpful. However, these usually don't show short term peaks in current use and thus may not detect the peaks that could, e.g., lead to memory card corruption.

cjs
  • 843
  • 1
  • 6
  • 15