Earlier quoted context omitted.
In general the mbed has the better options for low power , but if you prefer the arduino, this would be a good starting point: http://jeelabs.org/tag/lowpower/ And if you want a long-range, low-power wireless connection - use LoRa , There's a driver here: http://www.airspayce.com/mikem/arduino/RadioHead/classRH__RF...
How have you found the mbed OS tools/community/documentation to be? I've played around a bit with Arduino but I'm interested in checking mbed out.
Raspberry Pi Zero – Conserve power and reduce draw to 30mA
81–90 of 90 posts
Re: Raspberry Pi Zero – Conserve power and reduce draw to 30mA
#82Earlier quoted context omitted.
Have you tried a BeagleBone Black or any kind of BeagleBoard? What are you scaling RPi's for? Arduino and Raspberry pis strike me as toys compared to BBB's. BBBs are a lot less forgiving and require way more understanding of basic electronics to do anything with, even as simple as lighting an external LED will break your BBB if you didn't do it right, but they seem more powerful in terms of what you can do (although…
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
I actually think you can even damage the board if you create a short between the gpio pins and ground. So any kind of circuit requires a resistor, carefully reading the system manual and data sheets for your components and using ohm's law prior to hooking up components.
Re: Raspberry Pi Zero – Conserve power and reduce draw to 30mA
#83Earlier 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
The gpio pins have low tolerance. Apply more than the 8mA or 3.3v and you permanently damage your board. LED's usually require 20mA to achieve a good brightness so you have to create a safe circuit using a bipolar transistor and the 3.3v power pin which supplies way more current than a gpio pin. If you hook up that transistor wrong or short the circuit it's game over. I actually think you can even damage the board if…
Re: Raspberry Pi Zero – Conserve power and reduce draw to 30mA
#84Earlier quoted context omitted.
The gpio pins have low tolerance. Apply more than the 8mA or 3.3v and you permanently damage your board. LED's usually require 20mA to achieve a good brightness so you have to create a safe circuit using a bipolar transistor and the 3.3v power pin which supplies way more current than a gpio pin. If you hook up that transistor wrong or short the circuit it's game over. I actually think you can even damage the board if…
That's good to know, thank you. I'll have to only drive the MOSFETs with it, in that case, and avoid too much experimentation.
Re: Raspberry Pi Zero – Conserve power and reduce draw to 30mA
#85Earlier quoted context omitted.
That's good to know, thank you. I'll have to only drive the MOSFETs with it, in that case, and avoid too much experimentation.
Oh I wasn't saying not to use a bipolar transistor. In any case, both would work. Good luck!
Re: Raspberry Pi Zero – Conserve power and reduce draw to 30mA
#86Why are we even using a Raspberry Pi for battery powered projects... 30 mA draw is so high you'll be changing batteries every 2 days, and that is without doing anything. Compare that to f.e. a normal phone chipset with deep sleep, which draws about 9 mA with a cellular connection, or .1-.2 mA in flight mode. Or, if you just use the Pi for sensor readings, get a proper microcontroller, where current is measured in mic…
That's what people who don't own smartphones say about smartphones.
So it spends part of the time being highly capable, and part of the time sleeping with no downsides.
The Pi is just not cut out to be a passive battery-powered device.
Re: Raspberry Pi Zero – Conserve power and reduce draw to 30mA
#87Earlier 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*.
> "The thing is that unless you're already in the know you can't repurpose the board." That's why projects like Fernvale are potentially very useful, as they would make it easier to repurpose the cheap hardware used for feature phones: https://www.youtube.com/watch?v=hpEqDPYtf9s https://github.com/xobs/fernly
Re: Raspberry Pi Zero – Conserve power and reduce draw to 30mA
#88Why 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.
When studying power consumption for this type of devices, it's extremely common to measure the current being drawn, rather than to put out values in watts. 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 i…
Re: Raspberry Pi Zero – Conserve power and reduce draw to 30mA
#89Ok, it has low power consumption... no eth, no wifi, no usb... how do you communicate and what for? Running on batteries for two days and manually coping data from sd card?
Re: Raspberry Pi Zero – Conserve power and reduce draw to 30mA
#90Earlier 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.
The reason that these terminology and units were used by OP was because at a fixed voltage it is common for engineers to think about current instead of watts... even when their aiming to reduce power.
I'm not sure of the exact reason for this, but I suspect that it's because:
a) Measuring current is a more fundamental function of instruments. Quite a lot don't even measure power. So talking about current instead of power, even when you're aim is to reduce power, makes for a smoother process from a practical sense.
b) Batteries are usually measured in mAh. At lower power/currents you're usually using a linear regulator and therefore dividing mAh by mA is a very important measure. So you often keep everything in mA.