Arduino Weather-station To Internet Bridge

Here’s a project that looks to eliminate the PC necessary for pushing weather station data to the Internet. When you think about it, getting data from your own weather sensing hardware to a site like Weather Underground doesn’t require very much processing at all. The largest chunk of the puzzle is a window to the Internet, and that can be easily accomplished with a microcontroller rather than an always-on computer.

In this case, [Boris Landoni] is using an Arduino along with an RS232 shield and an Ethernet shield. The weather station, a La Crosse WS23xx series, already has an RS232 serial port for grabbing the data. The shield is necessary to step the voltage down to levels that will play nicely with Arduino. It also gives you a D-Sub connector for easy hook up. From there he hit up the documentation for Weather Undeground API, writing code to build the necessary string which is pushed over the Ethernet connection at regular intervals.

If your weather station only offers a USB port you’re not out of luck. Using an embedded platform with USB host functionality you can achieve the same results as we see here.

Graphical Programming With The Arduino IDE

The Arduino is an excellent first embedded development kit, provides a great introduction to electronics, and has the potential to get children into programming. [David] thinks throwing C at non-programmers isn’t the best way to learn programming, so he developed ArduBlock , a graphical programming language for the Arduino.

We’ve seen a number of graphical, block-based programming languages in our time, most notably Scratch. [David] found a project called OpenBlocks that serves as the basis for Android App Inventor.

[David] forked the OpenBlocks project and started working on his new graphical programming language. ArduBlocks uses the Arduino IDE, so everything possible in C with an Arduino should be possible with ArduBlocks. There’s a lot of thought put into the design of the blocks – the first iteration was far too ‘busy,’ but [David] cleaned it up and made the projects understandable.

For an absolute beginner, we couldn’t imagine anything better. ArduBlocks would be great for children, and we can’t wait to see a proper implementation of ArduBlocks with a touch screen.

UberFridge Helps Keep Beer Production Going Through The Dog Days Of Summer

uberfridge

[Elco Jacobs] used to let his beer ferment in the kitchen, but when things got too hot over the summer, he had to suspend his ale making for a few months. Not wanting to have to put production on hiatus again, he modified an old refrigerator into an awesome fermentation unit he calls the UberFridge.

The refrigerator features two temperature sensors, one that sits in the fermenting beer, and one that measures the temperature of the fridge. This dual probe setup offers him the ability to closely monitor the fermentation process, which he does via a sharp-looking web interface.

An Arduino serves as the PID controller, talking to a wireless router via a serial connection. The Arduino logs and relays data to the router where it can be viewed via a web browser. Not only can he keep tabs on what’s going on inside the fridge, he can reprogram the Arduino via the web interface as well.

Keep reading to see [Elco] explain the ins and outs of his UberFridge – we’re pretty sure you’ll want to build your own after you do.

[via BuildLounge]

Continue reading “UberFridge Helps Keep Beer Production Going Through The Dog Days Of Summer”

I’ll See Your Launchpad Controlled Arm And Raise You Arduino Controlled Autonomy

This OWI robot arm has been hacked to add position sensors and Arduino control. [Chris Anderson] took one look at the Launchpad controlled OWI from earlier today and said “wait a minute, I’ve already posted my own version of that project”. Well, that will teach him not to tip us off about his hacks!

The position control is a really nice addition. Potentiometers added to each of the joints (shoulder, elbow, and wrist) can be read by the ADC pins on the Arduino. Just a bit of calibration will let the microcontroller board know the position of the arm at any given time. The control technique is the same as the Launchpad hack, with one glaring drawback. [Chris] is using the Adafruit motor driver shield. It uses L293D H-bridge chips, but it only has four channels. There are five motors on this arm, so the video after the break shows it moving around without any outside instruction, but you won’t see it grab onto anything since the Arduino can’t move the gripper!

Still, the position feedback makes the case for this version. Just remember to order an extra chip if you want full control.

Continue reading “I’ll See Your Launchpad Controlled Arm And Raise You Arduino Controlled Autonomy”

Tracking Satellites With An Arduino

The guys over at brainwagon just finished up ANGST, the Arduino n’ Gameduinio Satellite Tracker, a build that displays 160 different satellites in Earth orbit on any SVGA monitor.

The build is of course based off an Arduino and Gameduino shield. A real-time clock is always needed for a satellite tracker, so a DS1307 RTC is thrown into the mix. The satellite data is stored on a 128KB EEPROM that is big enough to hold 750 different satellites and orbits.

The software side of things is a bit trickier. The guys at brainwagon used [James Miller]’s very popular and very old-school PLAN-13 sat tracking software. This orbit calculation program was published in 1983 and has since been ported from BBC Basic to just about every system imaginable.

Once the ANGST is hooked up and powered on, it reads the real-time clock and calculates the position of a satellite. This is done in real-time and updated every three minutes. On the screen, the last orbit (and a little more) is displayed along with the sun and the location of the ANGST. You might not find something like ANGST at the Space Command at NORAD, but we can’t think of a better way to keep track of the cubesats and spy sats above our heads.

Continue reading “Tracking Satellites With An Arduino”

Simple Touch Sensors With The Arduino CapSense Library

Ever thought of using touch sensors on your projects but didn’t because it would be too much work? [Paul Stoffregen] proves that it can be pretty easy if you use the CapSense library for Arduino. Here he’s created three touch sensors, connecting them to the Teensy microcontroller with two resistors each. The larger resistor (looks like 4.7 megaohms here) sends a signal through the copper pad which is read by the secondary pin. Here that pin is protected from electrostatic discharge with the 1k resistors. The microcontroller takes a reading by measuring how long it takes the voltage to change on the input pin.

Since the CapSense library takes care of the timing involved in these readings, all you have to do is decide how your program will react to the numbers that are coming in. In the video after the break [Paul] is echoing the timing figures back through the serial monitor to get an idea of what the data looks like. He experiments with touching the copper directly, and touching it through a piece of clear tape.

We’ve seen the CapSense library at work before in this interactive exhibit piece.

Continue reading “Simple Touch Sensors With The Arduino CapSense Library”

Stroboscope Project Uses Optical Drive Motor And Arduino

In the quest for a diy laser cutter made from DVD burner parts (that hack’s still in the works) this guy ended up with a junk box full of optical-drive leftovers. He put some of that surplus to good use by building this stroboscope. As the media spins, the white LED just out of focus in the foreground strobes to freeze the little black figure in the same place. The effect, as seen in the video after the break, is a dancing figure created by the optical illusion.

This is the same concept as that amazing 3D rowing skeleton build, but scaled down greatly. Each of the silhouettes seen above are slightly different, showing one pose that makes up a frame of the overall animation. They’re laser cut, but some careful paper-craft could probably accomplish the same thing. Assuming you could keep them from warping when spinning at high speeds.

Continue reading “Stroboscope Project Uses Optical Drive Motor And Arduino”