Alpha Clock Serial

From Evil Mad Scientist Wiki
Revision as of 22:20, 24 December 2011 by Windell (talk | contribs) (Create. Save, partway through writing.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The standard Alpha Clock Firmware for Alpha Clock Five has a built in serial interface protocol that supports several simple functions, including time sync and displaying text on the alphanumeric LED display.


Interfacing to Alpha Clock Five

The serial interface is a "TTL Serial" type, connected directly to the microcontroller, and supports logic-level signals only. The interface is normally configured for 19,200 baud, 8N1.

For most applications a USB-TTL interface such as the FTDI TTL-232R or the Adafruit FTDI Friend is an excellent choice. The FTDI interface connects to location J2 on the circuit board.

Note that the clock usually resets when the serial connection is opened; this is a side-effect of the auto-reset circuitry used for reprogramming the clock using the bootloader. If this is problematic and you expect to never update the firmware, you can disable auto-reset by removing capacitor C10 from the circuit board or by clipping the lead at pin RTS* on J2.


Supported commands

Firmware version 1.0 supports three serial commands: Set time, Ascii display, and Mode Time (which turns off Ascii display).

Each command consists of a header byte (0xFF), followed by a two-letter command and then 10 bytes of data.


ST: Set Time

The set time function is used to set the time displayed on Alpha Clock Five.


The full command consists of 13 bytes, as follows:

  • The header byte, 0xFF
  • The command ST
  • A 10-digit string giving the number of seconds since Jan 1 1970


The number of seconds since Jan 1 1970 is an implementation of a unix time string. As an example, the 10-digit string 1324758327 represents the time 20:25:27, Saturday December 24.


Please see the Sample Programs section below for an example program that can set the time.


A0: Ascii Display

The A0 function is used to display alphanumeric characters on the front LEDs of Alpha Clock Five.


The full command consists of 13 bytes, as follows:

  • The header byte, 0xFF
  • The command A0
  • A 5-character string consisting of the characters to display (e.g., "HELLO")
  • A 5-character string indicating which (if any) decimal points should be lit (e.g., "_ULB_")

The 5 characters to display should be in the range " " (space, ASCII 32) to "`" (grave accent, ASCII 96). This range includes A-Z (upper case), 0-9, and symbols including $, %, &, (, ), [, ], =, -, +, /, |, \, _, ., ", and ^. ( Please see here for a more complete ASCII chart in the appropriate range. ) Some symbols, such as the exclamation point or a colon, simply do not display well on an alphanumeric display. In certain cases, the decimal points can be used to help make good looking characters, as is the case with the colon, aptly displayed by two decimal points (upper and lower) between two characters.

The decimal point string consists of 5 characters, and describes which decimal points (if any) should be lit for each of the five alphanumeric LED displays. For each character in this string, a value 'L' will light the lower DP, a value 'U' will light the upper DP, and a value 'B' will light both DPs. Any other character will not cause either of the LEDs to be lit. Note that the decimal string is strictly additive; if the string contains characters that light either DP (for example the period, '.'), the DP string cannot be used to turn off that LED.


Please see the Sample Programs section below for an example program that can display text on the Alpha Clock Five LEDs.


Note that the set of characters available (ASCII 32-96) is defined in the firmware. If you need to display characters not in that set, or would like to change the shape of the displayed characters, that can be made possible by editing and uploading a new version of the firmware.


Sample programs