We've actually found that the RPi doesn't draw enough power, specifically to the USB ports. Our peripherals are within the USB spec of a 500ma max pull, but even so we are experiencing sporadic CPU brownouts. The first thought was to double the max_usb_current in /boot/config.txt, but that only lengthened the time between brownouts. We looked into hacks that could increase the current even more, such as this bypass m…
Raspberry Pi Zero – Conserve power and reduce draw to 30mA
61–70 of 90 posts
Re: Raspberry Pi Zero – Conserve power and reduce draw to 30mA
#62After posting a comparison of power consumption of the Pi Zero vs other Raspberry Pis a couple days ago, I spent another couple hours today testing various methods of reducing power consumption, and was able to get the idle power usage down to about 25-30 mA on the Pi Zero! Thanks to a few suggestions from others on the Raspberry Pi forums, Hacker News, and Reddit, I am able to disable the ACT LED and HDMI, and that…
How much of this applies to the bigger RPi models? Also, can you throttle the clock speed of the microprocessor and further reduce current consumption?
Re: Raspberry Pi Zero – Conserve power and reduce draw to 30mA
#63Earlier quoted context omitted.
Wait, how can you break the BBB with a LED? I'm going to use one for a LEGO robot, and I'd like to not fry it :P
Our team has personally blown through three of them through shorting faults. It's our fault, but the BBB is a pretty tender beast.
Re: Raspberry Pi Zero – Conserve power and reduce draw to 30mA
#64To put this in perspective, 30mA costs about $0.15 / year at typical US electric prices. 500mA is $2.50. A tiny draw regardless, but probably a lot more significant if you're running on batteries.
PS - I know we aren't going to get WiFi for under a few dollars a year. But physical ye-olde switches are vastly under-estimated I feel. In particular a button to put it into "configuration" mode.
Re: Raspberry Pi Zero – Conserve power and reduce draw to 30mA
#65Earlier quoted context omitted.
The Raspberry Pi runs on a fixed 5 volts. At a fixed voltage power will scale linearly with current.
That's a poor excuse for not using the correct terminology or the correct units.
[1] https://github.com/geerlingguy/raspberry-pi-dramble/wiki/Pow...
Re: Raspberry Pi Zero – Conserve power and reduce draw to 30mA
#66Earlier quoted context omitted.
I thougth you were thinking of ~dumbphones, but sure enough any smartphone these days is exceptional in most features. Just today I saw a chinese dual core smartphone phone for 34$... The thing is that unless you're already in the know you can't repurpose the board. ps: funny, just an hour ago I was trying to flash an old nexus s with CM*.
On the higher end you have last gen quad core Intel Atom Tablets with Windows 10, 2gb ram, USB, bluetooth, wifi and 8'' touch screen for 80$ [1]. The price of hardware in China is beyond amazing - honestly I could run a laptop off those specs with a slightly larger better screen (assuming I don't need to compile C++ :D) [1] http://www.banggood.com/Cube-iWork8-Ultimate-32GB-Intel-Cher...
Re: Raspberry Pi Zero – Conserve power and reduce draw to 30mA
#67Does the PI have any kind of 'deep sleep' support? If you could put the system into something like ACPI S3/S4 sleep state (suspend to RAM) and make it periodically wake up every n seconds, you might be able to save a lot more power. The PI would still be usable for many tasks, e.g. data sampling every few seconds.
Re: Raspberry Pi Zero – Conserve power and reduce draw to 30mA
#68Earlier quoted context omitted.
For someone like me who has only just started playing with microcontrollers thanks to the Arduino and RasPi and has never touched/played with anything else.. could you give any suggestions/links on what I should consider using for sensors? I have a bunch of "nodes" I need to make, each one has a single sensor (temperature, moisture, light, or distance using a sonic sensor) that will send back to a Raspberry Pi base s…
The MSP430 is renowned for low power and will idle (i.e. suspended waiting for interrupts) at microamps. Architecturally it's a 16 bit Von Neumann architecture at up to 16MHz with a remarkably elegant ISA and extensions to let it address more memory. Most interestingly, some devices have 64kB or 128kB of FRAM --- non-volatile RAM which operates at SRAM speeds! And because it's a Von Neumann architecture you can load…
As for external devices: at least G-series need external components to generate reset pulse to reliably boot (it mostly works with reset left floating, but whether it reliably works is function of how quickly the power ramps up, I got burned by this on last project).
Re: Raspberry Pi Zero – Conserve power and reduce draw to 30mA
#69That's really cool - with those settings, you could run it on a single charge of one of those cheap 20,000 mAh portable batteries for a month.
It might require a bit of hardware hacking to get that to work. I have one of those battery packs, and according to the manual, it will shut off automatically when the output current drops below 50mA.
Re: Raspberry Pi Zero – Conserve power and reduce draw to 30mA
#70Why are you referring to the units of mA for "power", as opposed to current draw? The power consumed would be measured in watts or milliwatts.
For one thing, it's the current that you usually measure in these cases anyway. For the other, power consumption in watts is not what you generally want to know when you design a battery-powered circuit. And, last but not least, it's more useful to have a figure in (m)A than (m)W when batteries are rated in mAh.
It's not correct terminology, mind you, but then neither is that of energy in your energy bill, so I guess this can be forgiven.