Pedal Far With A Solar Powered Tricycle

More and more electric bikes have been rolling out into the streets lately as people realize how inexpensive and easy they are to ride and use when compared to cars. They can also be pedaled like a normal bike, so it’s still possible to get some exercise with them too. Most have a range somewhere around 10-30 miles depending on battery size, weight, and aerodynamics, but with a few upgrades such as solar panels it’s possible to go much, much further on a charge.

[The Rambling Shepherd] had a tricycle (in the US, generally still considered a bicycle from a legal standpoint) that he had already converted to electric with a hub motor and battery, and was getting incredible range when using it to supplement his manual pedaling. He wanted to do better, though, and decided to add a few solar panels to his build. His first attempt didn’t fare so well as the 3D-printed mounts for the panel failed, but with a quick revision his second attempt survived a 50-mile trip. Even more impressive, he only had his battery half charged at the beginning of the journey but was still able to make it thanks to the added energy from the panels.

If you’re thinking that this looks familiar, we recently featured a tandem tricycle that was making a solar-powered trip from Europe to China with a similar design. It has the advantage of allowing the rider to pedal in the shade, and in a relatively comfortable riding position compared to a normal bike. Future planned upgrades include an MPPT charge controller to improve the efficiency of the panels.

Continue reading “Pedal Far With A Solar Powered Tricycle”

Energy Sipping Neodymium Sphere Keeps On Spinning

At this point we’re sure you are aware, but around these parts we don’t deduct points for projects which we can’t immediately see a practical application for. We don’t make it our business to say what is and isn’t worth your time as an individual hacker. If you got a kick out of it, great. Learned something? Even better. If you did both of those things and took the time to document it, well that’s precisely the business we’re in.

So when [Science Toolbar] sent in this project which documents the construction of an exceptionally energy efficient spinning neodymium sphere, we knew it was our kind of thing. In the documentation it’s referred to as a motor, though it doesn’t appear to have the torque to do any useful work. But still, if it can spin continuously off of the power provided by a calculator-style photovoltaic cell, it’s still a neat trick.

But how does it work? It starts by cracking open one of those little solar powered toys; the ones that wave or dance around as soon as any light hits the panel in their base. As [Science Toolbar] explains, inside these seemingly magical little gadgets is a capacitor and the classic black epoxy blob that contains an oscillator circuit. A charge is built up in the capacitor and dumped into a coil at roughly 1 Hz, which provides just enough of a push to get the mechanism going.

In the video after the break, [Science Toolbar] demonstrates how you can take those internals and pair it with a much larger coil. Rather than prompting a little sunflower or hula girl to do its thing, the coil in this version provides the motive force for getting the neodymium sphere spinning. To help things along, they’re even using a junk box zero friction magnetic bearing made up of a wood screw and a magnetized screwdriver tip.

It’s an interesting example of how a tiny charge can be built up over time, and with a nice enough enclosure this will make for a pretty cool desk toy. We’ve previously seen teardowns of similar toys, which revealed a surprising amount of complexity inside that little epoxy blob. No word on whether or not the version [Science Toolbar] cannibalized was quite so clever, however.

Continue reading “Energy Sipping Neodymium Sphere Keeps On Spinning”

The Linux Throwie: A Non-Spacefaring Satellite

Throwies occupy a special place in hardware culture — a coin cell battery, LED, and a magnet that can be thrown into an inaccessible place and stick there as a little beacon of colored light. Many of us will fondly remember this as a first project. Alas, time marches inevitably on, and launching cheerful lights no longer teaches me new skills. With a nod to those simpler times, I’ve been working on the unusual idea of building a fully functional server that can be left in remote places and remain functional, like a throwie (please don’t actually throw it). It’s a little kooky, yet should still deliver a few years of occasional remote access if you leave it somewhere with sunlight.

A short while ago, I described the power stages for this solar-powered, cloud accessible Linux server. It only activates on demand, so a small solar cell and modest battery are sufficient to keep the whole show running.

Where we left off, I had a solar cell that could charge a battery, and provide regulated 12 V and 5 V output. For it to be a functional device, there are three high level problems to solve:

  1. It must be possible to set up the device without direct physical access
  2. You must be able to remotely turn it on and off as needed.
  3. It needs to be accessible from the Internet.

The funny thing is, this hardware reminds me of a satellite. Of course it’s not meant to go into space, but I do plan to put it somewhere not easy to get to again, it runs off of solar power, and there’s a special subsystem (ESP8266) to tend the power, check for remote activation, and turn the main computer (Raspberry Pi 3) on and off as necessary. This sounds a lot like space race tech, right?

As I have a bit more code than usual to share with you today, I’ll discuss the most interesting parts, and provide links to the full firmware files at the end of the article.

Continue reading “The Linux Throwie: A Non-Spacefaring Satellite”

Weather Station Is A Tutorial In Low Power Design

Building your own weather station is a fun project in itself, but building it to be self-sufficient and off-grid adds another set of challenges to the mix. You’ll need a battery and a solar panel to power the station, which means adding at least a regulator and charge controller to your build. If the panel and battery are small, you’ll also need to make some power-saving tweaks to the code as well. (Google Translate from Italian) The tricks that [Danilo Larizza] uses in his build are useful for more than just weather stations though, they’ll be perfect for anyone trying to optimize their off-grid projects for battery and solar panel size.

When it comes to power conservation, the low-hanging fruit is plucked first. [Danilo] set the measurement intervals to as long as possible and put the microcontroller (a NodeMCU) to sleep in between. Removing the power from the sensors when the microcontroller was asleep was another easy step, but the device was still crashing overnight. Then he turned to a hardware solution and added a more efficient battery charger to the setup, which saved even more power. This is all the more impressive because the station communicates via WiFi which is notoriously difficult to run in low-power applications.

Besides the low power optimizations, the weather station itself is interesting for its relative simplicity. It could be built with things most of us have knocking around. Best of all, [Danilo] published the source code on his site, so most of the hard work has been done already. If you’re thinking he seems a little familiar, it’s because we’ve featured some of his projects before, like his cheap WiFi extender antenna and his homemade hybrid tube amplifier.

The Linux Throwie: Powering A Linux Server With A 0.3W Solar Panel

Have you ever had one of those moments, when you’re rummaging through your spare parts heap, and have a rather bizarre project idea that you can’t quite get out of your head? You know, the ones that have no clear use, but simply demand to be born, of glass and steel and silicon?

This time, the stubborn idea in question was sort of like a solar-rechargeable LED throwie, but instead of a blinking light, it has a fully cloud-accessible embedded Linux server in the form of a Raspberry Pi 3 Model B+. Your choice of embedded Linux board should work — I just happen to have a lot of these due to a shipping error.

There were two main challenges here: First, it would have to combine the smallest practical combination of solar panel, power supply, and Li-ion cell that could run the Raspberry Pi. Second, we’ll need to remotely activate and access the Pi regardless of where it is, as well as be able to connect it to WiFi without direct physical access. In this article we’ll be dealing with the first set of problems — stay tuned for the rest.

Continue reading “The Linux Throwie: Powering A Linux Server With A 0.3W Solar Panel”

Perfecting The Solar Powered Web Server

Running a server completely off solar power seems like it would be a relatively easy thing to do: throw up a couple of panels, tack on a charge controller and a beefy battery, and away you go. But the reality is somewhat different. Most of us hackers are operating on a relatively limited budget and probably don’t have access to the kind of property you need to put out big panels; both pretty crippling limitations. Doing solar on a small-scale is hard, and unless you really plan ahead your setup will probably be knocked out on its first cloudy day.

So when [Kris de Decker] wanted to create a solar-powered version of his site “Low-tech Magazine”, he went all in. Every element of the site and the hardware it runs on was investigated for potential power savings, and luckily for us, the entire process was written up in meticulous detail (non-solar version here). The server still does go down from time to time if the weather is particularly poor, but in general it maintains about 90% uptime in Barcelona, Spain.

The solar side of the equation is fairly simple. There’s a 50 watt photovoltaic panel charging a 12V 7Ah lead-acid battery though a 20A charge controller. With an average of 4 to 6 hours of sunlight a day, the panel generates 300 Wh of electricity in the best case scenario; which needs to be split between charging the battery and running the server itself.

As for the server, [Kris] chose the Olimex Olinuxino A20 Lime 2 in part because of it being open source hardware, but also because it’s very energy-efficient and includes a AXP209 power management chip. Depending on processor load, the Olimex board draws between 1 and 2.5 watts of power, which combined with charging losses and such means the system can run through two days of cloudy weather before giving up the ghost. A second battery might be added in the future to help improve the run time during low-light conditions, but for now its been working pretty well.

Perhaps the most interesting part of the whole project are the lengths to which the website itself was optimized to keep resource utilization as low as possible. Images are compressed using dithering to greatly reduce their file sizes, and the site eschews modern design in favor of a much less processor intensive static layout. There’s even a battery capacity display integrated into the page through some clever use of CSS. Even if you aren’t looking to set up your own sun worshiping website, there are tips here for building efficient web pages that could absolutely be put to use in other projects.

If you’re interested in solar projects, we’ve got you covered. From an open source charge controller to building DIY photovoltaic panels, there’s plenty of prior art you should find very…illuminating. Please clap.

Solar Power For Chernobyl’s Second Generation Of Electricity

When featuring cool hacks repurposing one thing for something else, we prefer to focus on what we could get our hands on and replicate for ourselves. Not this one, though, as nobody else has the misfortune of being responsible for 2,000 square kilometers (772 square miles) of radioactive contaminated land like the government of Ukraine. Trying to make the best of what they have, they’ve just launched a pilot program working to put up solar power farms inside the Chernobyl Exclusion Zone.

This is sure to invite some jokes in the comments section, but the idea has merit. Thirty years of weather has eroded the worst aftermath of the Chernobyl explosion. That area is no longer immediately lethal and people have been making short visits. Spanning from safety inspectors, to scientists, to curious adventurers with questionable judgement making television shows. Supposedly, by following rules on what not to do, it’s possible to keep radiation exposure of a short visit down to the level experienced by frequent fliers. But that’s still too much radiation for long-term stay. That means no homes, office parks, or factories. No agriculture either, as plants and animals grown in the area should not be eaten.

So what’s left? That’s what Ukraine has been struggling with, as it tried to figure out something positive to offset the headaches of monitoring the area.

Well, next to the defunct power plant is the electric distribution infrastructure it used to feed into, and photovoltaic power generation requires little human oversight. Some maintenance will be required, but hopefully someone has worked out how to keep maintenance workers’ cumulative exposure to a minimum. And if this idea pans out, clean renewable energy would start flowing from the site of one of the worst ecological disasters of our era. That makes it a worthwhile hack on a grand scale.

[via Gizmodo]