Building A Steam Punk Style Time And Weather Display

This is [Pierre Cauchois’] digital weather display. Since weather displays are ubiquitous in this day of smart phones in every pocket he went out of his way to give it a unique look. He started with a wooden voltmeter case, swapping the ancient display for a modern LCD screen.

He used Gadgeteer components for the retrofit. The images for the LCD are stored on an SD card and displayed on demand. Since the digital bezel will be the same no matter what the time or environmental conditions [Pierre] used the power of the .NET framework that drives the system. He made up an image using magenta for all of the dial openings. This way a sprite can be used just for the changing numbers, weather icon, and graphing area.

Looking at all that went into coding the project we think the Gadgeteer components are perfect for those that are well-versed in upper-level languages and don’t really want to deal with low-level microcontroller issues.

[Thanks George]

Extending The Range Of Wireless Weather Stations With Walkie Talkies

[Roel] wanted to put a wireless weather station in his greenhouse. Even though the weather station was supposed to transmit over fairly long distances, the geometry of his back yard and a few stone walls killed the radio signal even after putting a good antenna on the receiving side of his wireless weather station setup. Wanting to get his weather station working, [Roel] did the sensible thing and built a packet radio setup out of a pair of walkie talkies, greatly increasing the range of his weather station.

This build comes after [Roel] spent a great deal of time reverse engineering the wireless protocol of his Thierry Mugler weather station. With a little bit of code, [Roel] is able to get the current temperature and humidity reading into his Linux box. This system relies on the transmitter inside the weather station, so the system falls apart over any sufficiently large distance.

To increase the range of his weather station, [Roel] took his existing hardware and added a pair of inexpensive FRS walkie talkies. The build uses the hardware from his previous build to get the radio data from the weather station. This data is sent over to an ATmega88 where it’s converted to packet radio and sent over the walkie-talkie. On the receiving side, the output of a second walkie-talkie is piped into the Linux soundmodem app (link, but it’s down as of this writing) where it’s decoded. Sending the received data to gnuplot makes a very nice graph of the temperature and humidity.

[Roel] put the code for both the tx and rx sides of the build up on his build page. Very nice work that uses very inexpensive hardware.

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.

Extend Your Personal Weather Station’s Reporting Capabilities

This Nexus wireless weather station has an array of weather sensors that you mount outside and monitor on the LCD screen. It also has the ability to stream the data over USB, but that feature is only supported in Windows and the companion software leaves a lot to be desired. Here’s a technique that will let you unlock the potential of the data by streaming it to your Linux box or directly to the Internet.

It turns out that grabbing the data via Linux has been made quite easy thanks to a package called TE923 (translated). With the base unit connected via USB, the software will pull down a string of colon-separated data which will be easy to parse using your favorite scripting language. But what if you don’t want to tether this to a computer?

The project goes one step further by using a Carambola board. This is a WiFi board with a USB port on it. It runs OpenWRT so getting TE923 going is as simple as building the package. The best part is, any wireless router that runs OpenWRT (or DD-WRT, etc.) and has a USB port can substitute for this board. With the module connected to the station, data is pushed to the Pachube website to serve as a custom web readout.

[Thanks Saulius]

La Crosse Weather Station Wireless Data Acquisition

hacking_wireless_data_transfer_lacross_ws2305

Hackaday reader [equinoxefr] posted some images to our flickr pool showing off some modifications he made (Google Translation) to his La Crosse WS2305 weather station. Having built other router-based weather stations in the past, [equinoxefr] was looking for a better way to gather weather data after one of the routers gave up the ghost.

With a brand new La Crosse WS2305 in hand, his goal was to feed the Lacross’ data to his HTPC which runs XBMC. He pulled the weather station apart and probed around with an oscilloscope until he could find the TTL Tx and Rx pins required to retrieve data from the unit. He hooked the data pins to an XBee wireless transmitter, which he then tucked away in the station’s battery compartment.

Another XBee unit was connected to his computer via an XBee Explorer board, and he was reading data from his weather station in no time.

While his isn’t the first La Crosse weather station hack we’ve seen around here, we like how simple and clean it is. If you’re interested, be sure to check out his flickr stream to see more images of the hacking process.

Wireless Weather Station Obsessively Reports The Temperature

obsessive_weather_station

[nuumio] has been hard at work building a Tweeting weather station, which he recently got up and running. The weather station is built from three major components, a Linux PC for data storage and Tweeting, a main weather sensor unit, and a remote unit.

The remote unit sits outside and includes includes both a pressure and humidity/temperature sensor. The sensors are polled every 20 seconds, reporting the data back to the main unit via a 434 MHz RF transceiver. The remote sensor also records the ambient light level and the remaining battery voltage, sending that data to the main unit for good measure.

The main unit sits inside his house and records the same temperature and humidity data as the external unit. The main unit adds its data to the packets sent by the remote unit and transmits them to the PC via USB. The PC calculates the minimum and maximum temperatures for the last 12-hour and 24 -hour periods before sending that data back to the main unit to be displayed on its LCD panel. Every 10 minutes, the computer also posts the weather data on Twitter.

If you are looking to build your own weather station, [nuumio] has provided all of the source code for his project on his web page. However, he does admit that he was too lazy to draw up a schematic, so you are on your own in that department.