Weather Tube

  • Electronic_Design
  • Fabrication
  • Hardware_Programming

With some IN-12 Nixie Tubes acquired from the Ukraine, a quick way to get the daily forecast was born. The three pairs of numbers display the forecasted high and low temperatures, along with the current temperature. All information is delivered from Weather Underground via WiFi and displayed in a custom milled oak case.

Hardware Design + Build

The first step was to generate 170 volts from a 9 volt source to power the Nixies. Once the boost converter was working it was used to drive a high voltage transistor IC that took a 4 pin binary input from an Arduino and output to the ten Nixie Tube pins.

PCB Board Design

To provide flexibility in the spacing between digit pairs and reduce the cost of PCB board printing, the boards were designed to have a pair of tubes mounted to them, then chained via a 40-pin ribbon cable.

Instead of driving all six tubes at once, they are multiplexed and driven by only two ICs. By firing only two tubes at a time in rapid succession, it gives the illusion of all six tubes being lit.

Download the Eagle PCB Files

Case Design + Build

Once the basic hardware design was complete it was time to design the enclosure. The Eagle PCB files were imported into SketchUp and incorporated into a mock-up of the overall design. A single piece of oak was hollowed out for the electronics and the precise openings for the Nixies were routed out using a laser-cut plexiglass guide.

Hardware Programming

Weather Tube's logic is controlled by an Arduino connected to an ESP8266 WiFi Serial Transceiver. The code authenticates to a closed WiFi network and connects to Weather Underground's API using a serial connection to pull down weather information based on a location.

The multiplexing system works by quickly grounding two of the three PCB boards at a time, allowing one number on the PCBs to light up. This is done in succession 200 times a second. The forecast and temperature values are then updated every 5 minutes.

Check Out The Code