Thursday, April 4, 2013

The Akafugu Nixie Clock

I like Nixie tubes, especially when they are used in clocks, like this one I built a while ago. Although almost all Nixie clocks look the same, sometimes there is one that catches the eye. Such as the case of Agafuku Nixie Clock, designed in (and shipped from) Japan. The first thing to notice is that the final clock built from this kit is complete with enclosure, a rare find in the world of Nixie clock kits. Then, there is the look: simple, yet elegant, compact, yet functional. Obviously, I wanted one. Per, from Akafugu Corporation, graciously accepted to barter their Nixie clock kit for my Wise Clock 4 kit. Following is my brief review.


The Akafugu Nixie clock kit looks professional starting with the box. Here are a few photos to prove that, taken as I was opening the package.



















I was surprised to find a power adapter included!

















The clock's electronics are distributed onto three PCBs, shown in the photo below:
  • the power board (on the left), containing the 5V regulator and the high voltage switching-mode power supply; this board is SMD-only and all parts are pre-soldered;
  • the control board (on the right), which contains the microcontroller and the Nixie driver; this board is mainly through hole, the sole SMD component (pre-soldered) being the RTC (DS3231);
  • the display board (middle of the photo), designed to fit IN12 Russian Nixie tubes; this board also has some SMD parts pre-soldered (LEDs, connectors etc).















Remarkable and original is the fact that two of the PCBs are actually part of the enclosure: the power board is the back panel, the display board being the front panel. For the back panel, this is pulled off by using only SMDs, with no traces or pads on the outside part of the board. Did I mention that the power board comes with all (SMD) parts already soldered?

The inclusion of the boards as part of the case is a novel approach, worth applying to future projects, with obvious advantages (reduces the number of fasteners/screws/standoffs, eliminates the attachments between the PCBs and the front/end panels etc).


I assembled the clock following the detailed instructions provided. Most of the required soldering is on the control board. Some attention must also be paid to positioning of the Nixie tubes on the display board before soldering them. After about an hour of work I had the Akafugu Nixie clock up and running. The result is shown in the photos below.




























Beside being a cool geeky gadget, Akafugu Nixie clock can also be used as a functional alarm clock. The clock's functions are set by using the rotary encoder. Each tube can be lit up by an RGB LED (placed right under). The software, Arduino-compatible, is open source and can be modified using the Arduino IDE, then uploaded through the 6-pin FTDI interface/connector.

An improvement I would do is to allow for the easy replacement of the Nixie tubes, in case one gets burnt out (as it could happen with tubes, in general). This can be achieved by soldering tube socket pins on the display board instead of soldering the tubes directly to the board. I am sure Akafugu thought of this already, but they may have opted against it because it makes the Nixies stick out a bit more. I was actually going to follow up myself with this improvement, but the socket pins I found are too thick (~2mm) to go through the 1.5mm holes.


Overall, I was impressed with how nicely designed and well engineered this clock is. As a kit maker myself, I can appreciate the amount of work that went into creating this kit, from designing the hardware, to choosing the components, to cramming them all in such a compact space, to writing the software. Kudos for making it so easy to assemble, even by a beginner, with spectacular results.


For someone who likes Nixie clocks, the Akafugu Nixie clock is definitely a must-have.
Those who like clocks should add the Akafugu Nixie clock to their collection.
Those who like electronic kits will find the Akafugu Nixie clock kit inspirational.

9 comments:

  1. I like the looks of the "Blue Dream" Nixie clock, available here: http://www.nocrotec.com/shop/product_info.php/info/p127_IN-18-Blue-Dream-Nixie-Clock.html

    Another site to check out is http://www.tubeclockdb.com/

    ReplyDelete
    Replies
    1. Akafugu has another nifty Nixie clock in the works:
      http://www.akafugu.jp/posts/blog/2013_02_27-Diet-Nixie-Sneak-Preview/
      I would not be surprised if they are working on the wrist version as well, similar to this one:
      http://cathodecorner.com/nixiewatch/index.html

      Delete
  2. Florin, as nixie clocks go the akafugu is nice, but way overpriced considering what you can buy for similar money....Mike M has a good suggestion in checking out the tubeclock database, but you can get some really cool kits (including cases) from www.pvelectronics.co.uk complete with alarm, GPS functionality and all sorts of other goodies....

    Cheers,

    Nick

    ReplyDelete
    Replies
    1. Nick,
      You are right, $195 is not cheap. I guess that their margins are higher compared to the rest of the world just because things are expensive in Japan anyway. If this was made in North America or Europe, the price could have been around $100. I am also thinking that a kickstarter campaign may be very profitable for them. Many people paid $350 for a Nixie Ramos clock:
      http://www.kickstarter.com/projects/2074185253/ramos-alarm-clock?ref=live

      Delete
    2. The first Nixie clock I built (http://timewitharduino.blogspot.ca/2010/08/nixie-clock.html) was from pvelectronics. The major dis-advantages are: software is not open source, and it uses Microchip processor.

      Delete
    3. You're probably right Florin, perhaps their margins are a little less in Japan..I saw the Ramos clock, but in their defense you were getting a little more than just a nixie tube clock...;-) Do you have any B7971 tubes? If so, then check out www.badnixie.com and the MOD6 clock...one of the ultimate 'nixie' tube clocks around...

      Delete
  3. My wallet is significantly lighter... The IN-18 tubes (>$40 each) was outside of my budget, so I ordered http://www.nocrotec.com/shop/product_info.php/info/p42_IN-8-Blue-Dream-Nixie-Clock-in-Black-Brilliance-Case.html
    instead. While waiting for the parts to arrive from Germany I built a Bulbdial clock from http://shop.evilmadscientist.com/productsmenu/tinykitlist/156

    ReplyDelete
  4. Hi Florin.
    I downloaded the source codes for both wiseclock2 and 4 just to lear a few things from it, but was unable to find the Main function. I don't know much about the arduino environment, but I was wondering where the main body of the source code is located? Where the program is starting from? Where is the main loop? Couldn't find it in any of the included files.
    Another question, are you using some sort of sketch for the entire sourcecode? Becouse it has a LOT of variables, functions, constants that are impossible I guess to keep in mind without one. Could you please explain and describe your technique especially with codes this huge.
    Thank you, and regards. Szabi.

    ReplyDelete
    Replies
    1. Szabi,
      The Arduino sketches require just 2 functions to be written: setup() and loop(). Main() (which calls them both, with loop() called inside an infinite for) is supplied at link time by the Arduino libraries (file main.cpp).
      Take a look at Arduino reference here:
      http://arduino.cc/en/Reference/HomePage
      I hope this helps.

      Delete