RPi 5V PSU construction

From eLinux.org
Revision as of 09:37, 8 August 2012 by Mcrocker (talk | contribs) (A 5V power supply for the Raspberry Pi - Construction How To)
Jump to: navigation, search

Back to the Hub.

Mobile battery power supply options

A Battery Elminator Circuit (BEC) should be able provide a solid 5V output at upto 3A which will be plenty to handle the load on a normal RPi

Something like http://www.hobbyking.com/hobbyking/store/__15212__HobbyKing_Micro_UBEC_3A_5v.html Connect this BEC to a 3S LiPo 5000mAh batter and you should get 15 hours of run time off one full charge. You could also connect it directly to a 12v car battery for even longer run time.


A 5V power supply for the Raspberry Pi - Construction How To

Due to various problems with the power supply for the RaspberryPi, a home made PSU might be a solution for some of you. You will need some experience with construction of electronic circuits, appropriate tools and a multimeter.


I have had problems with a cheap 5V/1A adapter from Ebay too (freezing, no LAN, etc.) ... The adapter could not provide enough power. It had 5.0xV unloaded, but with RaspberryPi connected I've measured 4.78V and less - dropping to 4.5V on TP1 and TP2, and that's not good. The voltage drop might be partially caused by the cable, but I've used a branded Nokia cable that looks pretty solid. Anyway, we have to compensate for that too. Also there is some voltage drop on the polyfuse F3, hence don't expect to get >=5.0V on TP1-TP2...

So instead of looking for another PSU (or cell phone charger), I decided to make my own PSU with the popular 7805 - 5V/1A regulator.


The basic idea is shown on this schematic:

PSU 7805 v01.jpg

The resistors R1 and R2 serve as adjustment of the output voltage. The formula is: V out = V fixed + { R2 [ (V fixed/R1) + I standby] }, where V fixed=5V and I standby=2.5mA (for 7805). I calculated for resistors that I had at home, but for best results R1 should be about 470ohm to 1k. Remember that resistors have some tolerance, so results may vary slightly, always measure. Value of C3 is not critical, I recommend 100-470uF. Same for C4, where for every 1A drawn, use 1000uF of capacity (and add some reserve). Don't forget to put C1 and C2 as close as possible to the regulator. And a heatsink for the regulator is necessary too.

I've used an old 9.5V/1500mA power supply from an printer as the source for this regulator, so no transformer and rectifier etc. was needed in my case. And it works just fine :)


Here is a schematic of a complete PSU including all components:
(a suggestion, with better filtering and protection)

PSU 7805 v02.jpg

Starting from left, we have a transformer (protected by a fuse - F1) supplying about 7-12V AC at 2A (use what you have at home or what is cheaper to buy). Next is a rectifier (or 4 diodes / >1A) with caps (C7-C10, for filtering). Now we should have approx. <AC voltage> x 1.41 - so if we have a 9V transformer, it will be about 12.69V. The 7805 needs at least 2V (depending on type/manufacturer) more on the input than on the output (I prefer using a little more, >3V to be sure) for stable regulation, and it can be up to 35V (but a big difference between input and output voltage means "a lot work" for the regulator and a lot heating). In this case, 8-9V DC measured after the rectifier would be optimal. Main filtering is ensured by C4 (use at least 1000uF for each 1A drawn), another filtering after the regulator is C3 (100-470uF). C1-C6 serve the 7805 for stable function and HF filtering. R1 and R2 adjust the voltage to 5.25V, as described before. D1 and D2 are for protection. A transil is used for over-voltage (peaks) protection on the output, a 5V8 type should be fine (5.8V reverse standoff voltage and approx. 6.2V breakdown voltage) - use P6KE6.8A or BZW06-5V8. For operation signaling (device on) a LED coupled with R3 is used. You may use another fuse on the output - F2.

This is a rather fancy circuit, you may simplify it if you like - by leaving out C7-C10, C5, C6, D1, D2, LED and R3, F2 (and the transil, if you don't want any protection). Or leave just some of them. Your choice ;)


Also if you prefer to fine-tune the output voltage, you may replace R2 with a small pot (trimmer) as shown here:

PSU 7805 v03.jpg

With this values (R1=1k, R2=100) adjustment from 5V to approx. 5.75V is possible.


Resources on 7805

For more info about the 7805 regulator, google the datasheet and see the following resources.

Resource links:
The Adjustable Voltage Regulator,
Variable power supply using 7805,
or google more

The testing prototype

This is my testing prototype of this PSU, based on the first schematic. It's made of "what was found in the drawer". I've used an old 7805 regulator in TO3 package, C3 was taken from some broken mainboard, C4 is left out (it's not necessary, because the circuit is powered by a stable power supply from some old printer). The PSU provides stable 5.25V and i have 4.82V on TP1-TP2. My RaspberryPi works OK now :)

I will make another PSU (for permanent operation) later - new 7805 in TO-220 package, appropriate heatsink, 1k resistor for R1 and a small pot for R2, new "fresh" caps and a transil, usb connector on PCB ... and I'll put it in some case.


~#Pinoccio


Back to the Hub.