Monitor Power Consumption Of Low-Power Devices

Perhaps the most important consideration to make when designing a battery-operated device of any kind is the power consumption. Keeping it running for longer between battery changes is often a key design point. To that end, if you need to know how small programming changes will impact the power consumption of your device then [Daniel] has a great tool that you might find helpful: an ESP8266-based live power meter.

The power meter itself is battery-powered via a 600 mAh battery and monitors an e-paper module, which also displays information about power consumption. It runs using a NodeMCU and measures voltage and current across a 100-ohm resistor to calculate the power use, although the resolution does start to get noisy when the device is in standby/sleep mode. One presumes this could be solved by changing the value of the resistor in order to get more accurate measurements at the expense of losing accuracy during moments of high power consumption.

While this power monitor was built specifically to monitor power consumption on this particular e-paper display project, it should be easily portable into other battery-based systems that need fine tuning in order to maximize battery life. As a bonus, the display is already included in the project. There are ways of getting even more information about your battery usage, although if power consumption is important than you may want to stick with a more straightforward tool like this one.

Harvesting Energy From The Earth With Quantum Tunneling

More energy hits the earth in sunlight every day than humanity could use in about 16,000 years or so, but that hasn’t stopped us from trying to tap into other sources of energy too. One source that shows promise is geothermal, but these methods have been hindered by large startup costs and other engineering challenges. A new way to tap into this energy source has been found however, which relies on capturing the infrared radiation that the Earth continuously gives off rather than digging large holes and using heat exchangers.

This energy is the thermal radiation that virtually everything gives off in some form or another. The challenge in harvesting this energy is that since the energy is in the infrared range, exceptionally tiny antennas are needed which will resonate at that frequency. It isn’t just fancy antennas, either; a new type of diode had to be manufactured which uses quantum tunneling to convert the energy into DC electricity.

While the scientists involved in this new concept point out that this is just a prototype at this point, it shows promise and could be a game-changer since it would allow clean energy to be harvested whenever needed, and wouldn’t rely on the prevailing weather. While many clean-energy-promising projects often seem like pipe dreams, we can’t say it’s the most unlikely candidate for future widespread adoption we’ve ever seen.

DIY Wind Turbine For Free Energy

With electricity cost going up and the likes of British Gas hiking up their price, everyone could use a bit of free energy. There are a number of ways to harvest renewable energy including solar and wind, however, the cost of setting up a wind farm can be quite high. [Mr Tickles] has uploaded a video where he has a cheaper DIY method of making a DIY wind turbine.

His project uses a commercial ceiling fan as a turbine for converting the wind energy into electricity. PVC pipes are used to mount the entire thing such that it becomes portable. A cardboard fin is used to make the propeller face the wind but there are plans to upgrade it in the future. [Mr Tickles] demonstrates his project by lighting up a lamp and then charging a cell phone.

For the price, this hack is pretty neat and can be extended to work with larger fans. For those who are looking at an even simpler version of this build, check out the most straightforward wind turbine.

Continue reading “DIY Wind Turbine For Free Energy”

Will Supercapacitors Ever Replace Batteries?

Recharging your mobile phone or your electric vehicle in a few minutes sure sounds appealing. Supercapacitor technology has the potential to deliver that kind of performance that batteries currently can’t, and while batteries are constantly improving, the pace of development is not very fast. Just remember your old Nokia mobile with Ni-Cad batteries and several days of usage before a recharge was needed. Today we have Lithium-Ion batteries and we have to charge our phones every single day. A better energy storage option is clearly needed, and supercapacitors seem to be the only technology that is close to replace the battery.

Continue reading “Will Supercapacitors Ever Replace Batteries?”

Simplest Electricity Monitoring Solution Yet

Monitoring your home’s energy use is the best way to get a handle on your utility bills. After all, you can’t manage what you can’t measure! The only problem is that most home energy monitoring systems are cumbersome, complicated, or expensive. At least, until now. [Kevin] has created a new electricity meter based on Particle Photons which should alleviate all of these problems.

The Particle Photon (we get confused on the naming scheme but believe this the new version of what used to be called the Spark Core) is a WiFi-enabled development board. [Kevin] is using two, one to drive the display and one to monitor the electricity usage. This part is simple enough, each watt-hour is accompanied by a pulse of an LED on the meter which is picked up by a TLS257 light-to-voltage sensor. The display is a Nextion TFT HMI (touch screen) which is pretty well suited for this application. The data is corralled by emoncms, part of the OpenEnergyMonitor platform, which ties everything together.

For a project that has been done more than a few times, this one does a great job of keeping the price down while maintaining a great aesthetic. Make sure to check out the video below to see it in action.

Continue reading “Simplest Electricity Monitoring Solution Yet”

Two-Axis Solar Tracker

Solar panels are an amazing piece of engineering, but without exactly the right conditions they can be pretty fickle. One of the most important conditions is that the panel be pointed at the sun, and precise aiming of the panel can be done with a solar tracker. Solar trackers can improve the energy harvesting ability of a solar panel by a substantial margin, and now [Jay] has a two-axis tracker that is also portable.

The core of the project is a Raspberry Pi, chosen after [Jay] found that an Arduino didn’t have enough memory for all of the functionality that he wanted. The Pi and the motor control electronics were stuffed into a Pelican case for weatherproofing. The actual solar tracking is done entirely in software, only requiring a latitude and longitude in order to know where the sun is. This is much easier (and cheaper) than relying on GPS or an optical system for information about the location of the sun.

Be sure to check out the video below of the solar tracker in action. Even without the panel (or the sun, for that matter) the tracker is able to precisely locate the panel for maximum energy efficiency. And, if you’d like to get even MORE power from your solar panel, you should check out a maximum power point tracking system as well.

Continue reading “Two-Axis Solar Tracker”

Reading Power Use Data With A Webcam And Python

As any hacker will attest to, whenever an important tool is missing, you might as well just build a new one! That’s the position that [Matt] found himself in when he was attempting to measure the power consumption at his parents’ house. He left the transmitter for the power meter at home, and so the logical thing to do was to set up a webcam and a python script to monitor his dad’s power meter instead of going back to get his.

The power meter that he had handy was a GEO Minim Electricity Monitor. He found it very difficult to extract the data directly from this particular meter, so instead of digging into any of the communications protocols int he meter, he set up a webcam in a box with an LED and monitored it with a specially-written Python script. The script is able to see the particulars of the meter, and then reports back to the computer with all of the relevant data. [Matt] has put this code up on his project site for anyone to use.

This is a great workaround that doesn’t involve delving too deep into the inner workings of the meter in question. You could always build your own power monitoring system though, if that’s more of your style!