Sunday, April 18, 2010

SMT kits

My friend Charley, the author of Intruderchron software for the adafruit's Monochron clock, sent me this SMTCylon kit he sells through his web site. It is an SMD-only kit, that is, all components are surface mounted.

Although I soldered SMDs before, this was the first time I built an entire kit made of SMDs.
As challenging as it looks at first sight, after warming up by soldering a few LEDs, one may be inclined to give up through-hole soldering altogether. Soldering SMDs is not as scary as it sounds once one gets the technique, described in 4 steps: "wet" one pad, place the SMD on its pads, solder one terminal to the "wet" pad, then solder the other terminal.

The step-by-step tutorial for assembling the "SMTCylon" is very good, in the adafruit style, with lots of photos. Assembling takes about half an hour. The attiny microcontroller comes already programmed.

I highly recommend this kit as a great introduction to SMD soldering. And after the soldering fun was over (with absolutely no glitches), the playing fun started. I am thinking of incorporating the small board into a bigger project.

Friday, April 16, 2010

New features in the latest "Wise Clock 2" software

A week ago I received a version of the Wise Clock 2 code, improved and enhanced by MarkS. This library is posted here as well (together with the others, for historical reasons, let's say).

The new features implemented by Mark are:
  • ability to set the time through the buttons (instead of only through teh time.txt file on the SD card) ;
  • when setting the time, either current or alarm, the part (hours or minutes) being set is blinking;
  • time is displayed in either 12 or 24 hour format, as chosen through a menu option.
Mark also created a set of core files for Duino644 board, which can be used instead of the Sanguino core files.
Starting from Mark's changes, I restructured the latest code a bit, trying, in a hurry, an object-oriented approach. I also implemented a couple of new features:
  • quotes.txt now allows for lines to be commented out, so they don't get displayed;
  • a personalized message (e.g. "Happy birthday!", "Merry Christmas"), defined by the user in a file on SD card, can now be displayed between quotations, similar to the date.
This latest "Wise Clock 2" library is a lot of header and cpp files, some of them containing just straight C functions (HT1632.cpp, for example), some of them containing class definitions.
In the new library, Wise4Sure.pde has become very light and streamlined. The clock's functionality is now "encapsulated" in aptly named (I hope) files. Macrodefinitions are now scattered through the files, somewhat intuitively. For example, the macro _GREEN_DISPLAY_ is now found in HT1632.h file, which only deals with the display. (The ht1632 code is still the old bunch of C functions, no class at the moment.)
The OO Wise Clock 2 library can be downloaded from the same place as the others, here.

Thursday, April 8, 2010

Countdown timer prototype

While waiting for an 8MHz resonator to finish a previous project and post the result, I put together a prototype of a countdown timer that shows the time passing by changing the display color from green, through orange, to red.

This is just a different way to display information, color versus digits, similar to analog vs digital speedometer, if you will.



The timer is built with an Arduino Diecimila (with ATmega168) and the LED matrix shield.