6

I am considering this 5V regulated PS module. I have a coin acceptor that connects to a board. I am going to cut the coin acceptors 12V cable and put the -ve and +ve behind the regulated power supply below. Then use a USB cable to power the Pi.

Then if all goes well, I need to craft a way to register the coin acceptor pulse via the GPIO.

For now, is it okay to use the above power supply to power Raspberry Pi?

Greenonline
  • 2,969
  • 5
  • 27
  • 38
Syler
  • 163
  • 1
  • 3

4 Answers4

2

If you use a 5v regulator to drop the 12v you have down to the 5v you need, your 5v regulator will be dropping 7v across itself. Even at small currents, the 5v regulator will be trying to get rid of significant heat. If something needs 250mA at 5v, say, the 5v regulator will be generating 0.25 x 7 Watts, or just under 2 Watts. So, if you go this route - which is fine - don't forget to make sure the regulator can get rid of its heat into a heat sink, and that the heatsink can get rid of the heat its receiving, too. Many folk forget that last bit! ("I've put a heatsink on it." Sure, but the heatsink is cooking hot!') Most modern regulators will 'shut down' if they get too hot, and they do this progressively - which means they supply peculiar voltages as they shut down. This can be extremely puzzling, as (usually) the electronics being supplied does odd things! By the time you take a look, the regulator has recovered (cooled down a bit), and voltages look ok ... for a while!

user28642
  • 21
  • 2
1

Yes, that will work just fine.

It's essentially the same as an UBEC and I have seen people reported that they are running their Pis off 12 volt from their PC Power Supply or other 12V adapters, for months without any problem.

The one you have is very good. Just remember some of the older Pis have 1A polyfuses on the power USB port. So, if you plug in a wi-fi dongle for example it will reset the Pi.

You can wire it to the GPIO Pins but beware, these DC-DC do not protect from short circuits or reverse polarity on the OUTPUT side! Put a fuse on the +5 volt, it's worth the hassle. You don't want to fry your Pi.

Phil B.
  • 5,053
  • 17
  • 30
Piotr Kula
  • 17,336
  • 6
  • 66
  • 105
1

If you read reviews for this product, people report stable 5.1V supply, wich should work perfectly for Pi, just make sure you double check under load with Voltmeter in your operational range of input voltages/temperatures.

1

It should be fine with the following considerations:

  • Try to ensure the regulator is a switching regulator, this will ensure that you don't generate excessive heat while regulating the 12V input;
  • Some voltage regulators have a tendency over time, especially cheap ones to lose their ability to regulate effectively and the output voltage can increase beyond what your device expects and could cause issues;
  • Please do not wire it to the GPIO pin to feed power to the PI. Dissect an old USB cable, attach the red and black wires to the regulator, solder and tape or heat shrink these connections. Connect the USB end to the Pi. This ensures you use the circuit protection that you paid for with the Pi;
  • Check the voltage coming out of the regulator with a meter before you connect it to the Pi for the first time.
Greenonline
  • 2,969
  • 5
  • 27
  • 38
jsalassi
  • 76
  • 1
  • 3