Global Village Construction Set

The Global Village Construction Set is an open hardware initiative aimed at sharing tool-building knowledge. They believe that to build civilization you need forty basic tools, eight of which they’ve already prototyped and made available on their wiki. Included in these is a tractor which reminds us of a beefy bobcat. It has a soil pulverizing attachment which can be used to break down soil and feed it to their soil brick compressor. That machine spits out compressed dirt bricks which are used as building materials. They’re stacked on concrete footings and then limewashed to protect the un-baked bricks from water erosion. Does this remind anyone else of real-life Minecraft?

Above you can see a group of Open Source Ecology developers showing off bricks in front of the machine that made them, with the tractor/soil pulverizer to the right. Take a look at the videos about the construction set and brickmaking after the break. And learn more by perusing their weblog.

If you think an apocalypse is on the way you might want to buddy-up with these folks. They seem to know what they’re doing.

Continue reading “Global Village Construction Set”

How To Weigh A Bee Hive

Did you know weighing bee hives was even necessary? Of course it is. Monitoring hive weight can tell a beekeeper a lot about the size of the swarm, their harvesting habits, and the yield they are producing.

We had to cover this hack because it’s a fine piece of engineering. [Trearick] designed a bee hive scale that lifts one side of the hive to calculate weight. Using easy to find metal brackets, a hinge, a pulley, and some plywood he built a prying device. The three teeth slip in between the hive and its base and can be separated by squeezing together the plywood handles on the opposite side. This lifts one end of the hive, measuring the force needed to do so using a luggage scale. The readout should be roughly 1/2 the total hive weight. This measurement takes seconds to complete, uses a bulb level on the scale to help ensure consistency, and creates little or no disturbance to our flying friends.

It’s nice to see a Hymenoptera hack that helps in giving bees a healthy place to live, instead of killing wasps.

Water Use Feedback Changes Behavior

How much water do you use when showering, or washing your hands, or washing the dishes? Not how much does the average person use, but how much to you use? That’s what the team over at Teague Labs set out to find with this water usage feedback system. The sensor used is a Koolance flow meter which is intended to measure coolant flow in PC liquid cooling systems. At $20, it makes a nice low-cost sensor which was paired with a WiFi enabled Arduino. In the image above they’re using an iPad as a screen so that you can see how much water you’re using (or wasting) as you wash your hands. This resulted in saving 1/2 gallon of water every time someone washed their hands.

The project code, schematic, and board files are all available for download. Along with the hardware build there’s some nice server-side software that gathers and graphs the data over time. We’ve seen a lot of power-meter hacks, but it’s nice to have the option to track water usage, even if this is tailored to just one tap at a time.

Adding Mobile Control To Your Gardening

[The Cheap Vegetable Gardener] wanted to check in on his garden from the road so he wrote a control app for his WinPhone. The hardware work is already done; having been built and tested for quite some time.

The implementation comes in two parts, both shown in the chart above. The grow box is behind a firewall as you don’t want random folks turning on the water and grow lights on a whim. The first part of the interface takes care of this separation by providing a set of functions on the host machine. The second portion is the phone app itself which calls those functions and displays all the pertinent information from the status of the lights, heater, exhaust, and water pump, to the current temperature and humidity. He’s even used Google Charts to graph data over time. The app itself took about two hours to code with no prior experience, a testament to the level of approachability these tools are gaining.

Bicycle Hub Hydropower

[Niklas Roy] wanted to create electricity from moving water so he came up with this hyrdopower generator. It is part of his grand scheme to rent out small personal fountains made from buckets. They need electricity to run so he hooked up the generator to the water jet of a public fountain. It should be possible to use this setup with falling water in a similar way that other generators do.

To build the device he cut fins out of PVC pipe to use as the scoops. They are attached to a Shimano hub generator, meant for producing power while you pedal. The hub is mounted in the front for from a bicycle, which can then be mounted anywhere moving water is available. The only thing that worries us about the setup is [Niklas’] comment that being showered with water didn’t destroy the hub right away.

See the hub and the smaller fountains in the clip after the break.

Continue reading “Bicycle Hub Hydropower”

Wood Burning House Heater

Dabbling in alternative heating technology, [Rob Steves] built a wood stove to dispose of his scrap wood while negating his home’s fire insurance at the same time. As the leftover bits from his wood projects started to stack up he wondered how he would dispose of them. Burning the bits for heat means he’s using every last bit of the lumber. The internal tank from an electric water heater was repurposed as a combustion chamber, with exhaust gases escaping through some high-temperature flexible tubing. The glass panes were removed from one of the fireplace doors to give the off-gases a place to go. The result is a rocket stove that burns very hot and does a great job of warming his house.

It’s not the safest way to heat a home, and there may be coding issues with your municipality. But this might go well in a remote location, like that cabin where you have to generate your own electricity.

[Thanks HybridBlue]

Another Approach To Power Meter Data Harvesting

[Dodgy] wrote in to talk about his power meter data harvesting programs. This uses the same hardware by CurrentCost as the hack we looked at over the weekend but [Dodgy’s] implementation is different. It’s separated into two parts, the first is a webserver written in C that harvests the data and makes it available at an address on the network, the second is written in Perl to format and upload data to Google PowerMeter.

The C program serves data on a configurable port, defaulting to 3090. All of the data can be accessed in one line of code by loading http://127.0.0.1:3090, or individually with subdirectories like /watts, /time, or /tempr. From there you can do what you want with the data. The second part of [Dodgy’s] suite is a Perl script that polls the C server and sends the data to your Google account.

One thing that interests us is his comment that you should be able to compile the server side C code for an embedded device. It would be a nice energy savings to be able to upload data regularly without a PC running constantly.