Editing Alpha Clock Serial v2

Jump to: navigation, search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 4: Line 4:
 
== Interfacing to Alpha Clock Five ==
 
== Interfacing to Alpha Clock Five ==
  
Alpha Clock Five has two onboard hardware serial ports.    The main serial port (Arduino PORT0, J2 on the PCB) is normally used for communication with your PC, while the second serial port (Arduino PORT1, J5 on the PCB) is normally used for connecting to another "daisy chained" Alpha Clock Five.   In general, we will refer to the main serial port, J2, as "the serial port" for purposes of communication.     
+
Alpha Clock Five has two onboard hardware serial ports.    The main serial port (Arduino PORT0, J2 on the PCB) is normally used for communication with your PC, while the second serial port (Arduino PORT1, J5 on the PCB) is normally used for connecting to another "daisy chained" Alpha Clock Five.     In general, we will refer to the main serial port, J2, as "the serial port" for purposes of communication.     
  
  
The serial port on Alpha Clock Five is a "TTL Serial" type that is connected directly to the microcontroller.  To interface with a computer, it is normally used with an FTDI serial interface such as the [http://shop.evilmadscientist.com/productsmenu/partsmenu/130-usbttl FTDI TTL-232R] or the Adafruit [http://shop.evilmadscientist.com/productsmenu/accessories/210 FTDI Friend].    Note that since the interface supports logic-level signals, it cannot be interfaced directly to a traditional RS232 serial port on a computer.     
+
The serial port on Alpha Clock Five is a "TTL Serial" type that is connected directly to the microcontroller.  To interface with a computer, it is normally used with an FTDI serial interface such as the [http://evilmadscience.com/productsmenu/partsmenu/130-usbttl FTDI TTL-232R] or the Adafruit [http://evilmadscience.com/productsmenu/accessories/210 FTDI Friend].    Note that since the interface supports logic-level signals, it cannot be interfaced directly to a traditional RS232 serial port on a computer.     
  
 
The interface is normally configured for 19,200 baud, 8N1.
 
The interface is normally configured for 19,200 baud, 8N1.
Line 20: Line 20:
 
== Daisy-Chained Serial ==
 
== Daisy-Chained Serial ==
  
Alpha Clock Five features a second hardware serial port, located at location J5 on the circuit board.  For daisy chaining, you can use a [http://shop.evilmadscientist.com/productsmenu/partsmenu/586 six pin SIL F-F header cable] to connect from J5 directly to the main serial port (J2) on a second Alpha Clock Five unit.    Multiple Alpha Clock Five units can be connected together in this same way, to produce larger-yet alphanumeric displays. 
+
Alpha Clock Five features a second hardware serial port, located at location J5 on the circuit board.  For daisy chaining, you can use a [http://shop.evilmadscientist.com/productsmenu/partsmenu/586 six pin SIL F-F header cable] to connect from J5 directly to the main serial port (J2) on a second Alpha Clock Five unit.     
  
 
In revision B of the circuit board, J5 is located just below the middle chip, U2.  Pin 1, where the "black" side of the cable goes is indicated by an arrow.  In revision C of the circuit board,  J5 is located below U3, on the lower right side of the circuit board.    Pin 1, where the "black" side of the cable goes is indicated by an arrow.  Pin 1 is also indicated as the ''square'' pin of header J5.    If your kit did not come with a header at location J5, you will need to add one at that location in order to have a place to attach the cable.
 
In revision B of the circuit board, J5 is located just below the middle chip, U2.  Pin 1, where the "black" side of the cable goes is indicated by an arrow.  In revision C of the circuit board,  J5 is located below U3, on the lower right side of the circuit board.    Pin 1, where the "black" side of the cable goes is indicated by an arrow.  Pin 1 is also indicated as the ''square'' pin of header J5.    If your kit did not come with a header at location J5, you will need to add one at that location in order to have a place to attach the cable.
Line 31: Line 31:
 
== Supported commands ==
 
== Supported commands ==
  
Firmware version 2.0 supports several serial commands: Set time (ST), Ascii display (A0/A''x''), Set Parameter (B0/B''x'') and Mode Time (MT).
+
Firmware version 2.0 supports three serial commands: Set time, Ascii display, and Mode Time (which turns off Ascii display).
  
 
Each command consists of exactly 13 bytes:  A single header byte (0xFF), followed by a two-letter command code and then 10 additional bytes of data.   
 
Each command consists of exactly 13 bytes:  A single header byte (0xFF), followed by a two-letter command code and then 10 additional bytes of data.   
Line 51: Line 51:
  
  
The Alpha Clock Five library (v. 2.0 and above) includes a set of Processing sketches, including an example program (AlphaClock_SetTime) that can sync the time on your Alpha Clock Five to that on your PC.  (Sample applications to communicate with Alpha Clock Five are provided as .pde files, for use with the Processing development environment.  Processing is a free, cross-platform programming environment, and you can download your copy [http://processing.org/ at processing.org].)
+
The Alpha Clock Five library (v. 2.0 and above) includes a set of Processing sketches, including an example program (AlphaClock_SetTime) that can sync the time on your Alpha Clock Five to that on your PC.  To run these sketches, download Processing [http://processing.org from processing.org].
 
 
  
  
 
==== A0: Ascii Display ====
 
==== A0: Ascii Display ====
  
The A0 function is used to display data, for example alphanumeric characters, on the front LEDs of Alpha Clock Five. It can also be used to blank the display. 
+
The A0 function is used to display data, for example alphanumeric characters, on the front LEDs of Alpha Clock Five.
  
  
Line 67: Line 66:
  
  
The 5 ASCII characters to display should be in the range " " (space, ASCII 32) to "e" (lower-case "e", ASCII 101).    There are defined characters in the default font table for A-Z (upper case), 0-9, space, and symbols such as $, %, &, (, ), [, ], =, -, +, /, |, \, _, ., ", and ^.  ( Please [http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters see here] or [http://web.cs.mun.ca/~michael/c/ascii-table.html here] for a more complete ASCII chart in the appropriate range. )  The last five characters in the font table, "a" though "e", are extra character "slots" that are  available to be overwritten with custom characters. 
+
The 5 ASCII characters to display should be in the range " " (space, ASCII 32) to "e" (lower-case "e", ASCII 101).    There are defined characters for A-Z (upper case), 0-9, space, and symbols such as $, %, &, (, ), [, ], =, -, +, /, |, \, _, ., ", and ^.  
 +
  ( Please [http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters see here] or [http://web.cs.mun.ca/~michael/c/ascii-table.html here] for a more complete ASCII chart in the appropriate range. )  There are also five  
  
The shape of any character in the font table can be edited with a B0 (Set Parameters) command.  Some symbols, such as a comma, exclamation point, or a semicolon, ''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. 
 
  
 +
Some symbols, such as the exclamation point or a semicolon, ''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 '1' will light the lower DP, a value '2' will light the upper DP, and a value '3' will light both DPs. Any other character will not cause either of the LEDs to be lit.  Any other character will not cause either of the LEDs to be lit.  The decimal string is ''strictly additive'', in that it can only be used to turn on decimal points that are not already lit. If the ASCII string contains characters that light either DP (for example the period, '.'), the DP string cannot be used to turn off the decimal point..   
 
  
Note that the decimal point protocol has been changed from that in firmware v1, for which the display characters were 'U', 'L', and 'B' for upper, lower, or both decimal points.
 
  
    
+
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 '1' will light the lower DP, a value '2' will light the upper DP, and a value '3' will light both DPs. Any other character will not cause either of the LEDs to be lit.   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.    Note that the decimal point protocol has been changed from that in firmware v1, for which the display characters were 'U', 'L', and 'B' for upper, lower, or both decimal points.  
To blank the display, you can send an string consisting of five spaces ("    ") for both the ASCII and DP strings.
 
  
  
The Alpha Clock Five library (v. 2.0 and above) includes a set of Processing sketches, including an example program (AlphaClockv2_SendText) that can can display text on the Alpha Clock Five LEDs.  (Sample applications to communicate with Alpha Clock Five are provided as .pde files, for use with the Processing development environmentProcessing is a free, cross-platform programming environment, and you can download your copy [http://processing.org/ at processing.org].)
+
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 firmwareIf 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.  
  
  
 +
To blank the display, you can send an string consisting of spaces, "    ".
  
  
 
==== A''x'': Daisy-Chained Ascii Display  ====
 
==== A''x'': Daisy-Chained Ascii Display  ====
  
The A''x'' function is a "daisy-chained" version of the A0 command.  It is used to display alphanumeric characters on the front LEDs of more than one Alpha Clock Five, connected through their serial interfaces.   
+
The A''x'' function is used to display alphanumeric characters on the front LEDs of more than one Alpha Clock Five, connected through their serial interfaces.   
  
 
The full command consists of 13 bytes, as follows:
 
The full command consists of 13 bytes, as follows:
Line 100: Line 101:
  
  
The Alpha Clock Five library (v. 2.0 and above) includes a set of Processing sketches, including several example programs that can can display text across multiple daisy-chained Alpha Clock Five units through the serial interface.  (Sample applications to communicate with Alpha Clock Five are provided as .pde files, for use with the Processing development environment.  Processing is a free, cross-platform programming environment, and you can download your copy [http://processing.org/ at processing.org].)
 
  
The relevant example sketches are as follows:
+
==== MT: Mode Time ====
* AlphaClockv2_SendTextDaisy: Demonstrates sending text to the second of two Alpha Clock Five units connected together.
 
* AlphaClockv2_TextStringDaisy2:  Writes a single text string across two Alpha Clock Five units.
 
* AlphaClockv2_Test4Daisy: Demonstrates sending text to up to four Alpha Clock Five units.
 
* AlphaClockv2_ScrollTextDaisy2:  Scrolls a text string across multiple Alpha Clock Five units.
 
  
 
+
The MT function is used to resume normal display mode-- showing the time --after command A0 has been issued.
 
 
==== B0: Set Parameters ====
 
 
 
The B0 function is used to adjust certain parameters on Alpha Clock Five over the remote interface.  This command can be used to set the brightness of  Alpha Clock Five, the font style of numbers, and to edit individual font characters.  Changes made to settings over the remote interface are impermanent, and will be set forgotten the next time that Alpha Clock Five is reset.
 
  
  
 
The full command consists of 13 bytes, as follows:
 
The full command consists of 13 bytes, as follows:
 
* The header byte, 0xFF
 
* The header byte, 0xFF
* The command B0
+
* The command MT
* One more character, either 0, 1, or 2, which indicates which parameter to adjust.
+
* A 10-character string (the contents of this string will be ignored).
* Nine more characters of data, which depend on the parameter being adjusted.
 
  
  
'''B00''':  Set brightness
+
Please see the Sample Programs section below for an example program that displays characters with A0, and then uses MT to display the time again.
  
The display brightness is specified as a two-character ASCII string indicating the brightness on a scale of 0 to 11.  The string must be exactly two characters long, and leading-zero-filled.  For example, "01" and "10" are acceptable, but "1" and " 1" are not.    The remainder of the data string consists of 7 additional bytes, which will be ignored.
 
  
Example:  (0xFF) followed by "B0011*******" will set the brightness to maximum.
+
== Sample programs ==
  
 +
Sample applications to communicate with Alpha Clock Five are provided as .pde files, for use with the Processing development environment.  Processing is a free, cross-platform programming environment, and you can download your copy [http://processing.org/ at processing.org].
  
'''B01''': Set number character set
 
  
Alpha Clock Five features 10 built in number font styles, that you can choose between.  The character set chosen is indicated by a single ASCII character in the range '0' to '9' that follows the "B01".  The remainder of the 10-byte data string consists of 8 additional bytes, which will be ignored.
+
==== AlphaClock_SetText ====
  
Example: (0xFF) followed by "B014********" will select number font style number 4.
+
Download this file [http://evilmadscientist.s3.amazonaws.com/source/alphafive/AlphaClock_SetText.pde here] (2 kB .pde file).    --NOT YET UPDATED FOR v2.
  
  
'''B02''': Edit font character
+
When you run the application, it presents a window.  Click your mouse in the window to alternately display a text string ("ALPHA", plus some added decimal points) and to resume clock display.  This demonstrates the use of the A0 and MT serial functions.
  
The shape of any character in the font table can be redefined by using the B02 command.  Following the "B02" are nine bytes of data that specify the ASCII character to be redefined, and the shape of that character.  The font shape is specified by three sequential values, the "A", "B", and "C" values that indicate which LEDs will be lit when that character is displayed.  Depending on those three values, a font character may include alphanumeric segments, decimal points (upper and/or lower), or both.  This command can be used to put arbitrarily shaped characters or data on the Alpha Clock Five display, for example by overwriting the 'a' through 'e' characters, and then displaying those characters with the A0 command.
+
Note that you may need to edit the file to select the correct serial port, defined by the "portIndex" variable, in order to select the serial port where your clock is attached.  
  
  
In detail, the full B02 command is given as follows:
 
  
* The header byte, 0xFF
+
==== AlphaClock_SetTime ====
* The command "B02"
 
* The character that will be edited, indicated by a single ASCII character in the range from " " (space, ASCII 32) to "e" (lower-case "e", ASCII 101).  Example: 'Q'
 
* The "A" value, which is a value in the range 0 to 255, formatted as exactly three ASCII characters, with leading zero fill.  Example 1: "003". Example 2: "015". Example 3: "251".
 
* The "B" value, which is a value in the range 0 and 3, formatted as exactly one ASCII characters.  Example 1: "0". Example 2: "2".
 
* The "C" value, which is a value in the range 0 to 255, formatted as exactly three ASCII characters, with leading zero fill.  Example 1: "003". Example 2: "015". Example 3: "251".
 
* One extra byte of data, which will be ignored.
 
 
Example:  (0xFF) followed by "B02Q0160204*" will replace the font definition for the letter 'Q' with the font character defined by A = 16, B = 0, C = 204 (which happens to draw a "K".) 
 
  
 +
Download this file [http://evilmadscientist.s3.amazonaws.com/source/alphafive/AlphaClock_SetTime.pde here] (2 kB .pde file).   
  
The individual "A", "B", and "C" values may be calculated by summing the values shown in this chart, for each LED segment or decimal that should be lit:
+
When you run the application, it presents a window.  Click your mouse in the window to set the time on the clock to your present computer system time.  This demonstrates the use of the ST function, and also provides an accurate way to set the display time.
  
 +
Note that you may need to edit the file to select the correct serial port, defined by the "portIndex" variable, in order to select the serial port where your clock is attached.
  
http://evilmadscience.s3.amazonaws.com/wiki/alphaclock/alphatemplate3.png
 
  
  
A java applet for interactively calculating these values is also [http://wiki.evilmadscience.com/extras/AlphaCharGen/ available here].
 
 
 
 
The Alpha Clock Five library (v. 2.0 and above) includes a set of Processing sketches, including two example programs that execute the B0 commands.  (Sample applications to communicate with Alpha Clock Five are provided as .pde files, for use with the Processing development environment.  Processing is a free, cross-platform programming environment, and you can download your copy [http://processing.org/ at processing.org].)
 
 
The relevant example sketches are as follows:
 
* AlphaClockv2_BrightnessNumSet:  Change Alpha Clock Five brightness and number character set.
 
* AlphaClockv2_CustomChars: Demonstrates editing and displaying custom characters on Alpha Clock Five through the serial interface.
 
 
 
 
==== B''x'': Set Parameters (Daisy-Chained)  ====
 
 
The B''x'' function is a "daisy-chained" version of the B0 command.  It is used to adjust certain parameters on more than one Alpha Clock Five, connected through their serial interfaces. 
 
 
The full command consists of 13 bytes, as follows:
 
* The header byte, 0xFF
 
* The command letter 'B', a single ASCII character
 
* The distance value ''x'', a single byte.  This may be an ASCII value of '0' - '9' or a binary value from 0 to 47. This value indicates how many daisy-chained Alpha Clock Five units should "relay" the command before executing the "B0" command.
 
* One more character, either 0, 1, or 2, which indicates which parameter to adjust.
 
* Nine more characters of data, which depend on the parameter being adjusted.  See the description of the B0 command above for the specific data format.
 
 
 
 
When Alpha Clock Five receives an B''x'' command on its main serial port (where ''x'' is not equal to zero), it relays that command out through its second serial port, decrementing it from B''x'' to B''(x-1)''.  For example, suppose that two Alpha Clock Five units are connected together via their serial ports. Then, the command B1, followed by a data string, will be received by the first Alpha Clock Five and then sent to the next as an B0 command, so that it will execute the B0 command on the second unit.
 
 
 
 
The Alpha Clock Five library (v. 2.0 and above) includes a set of Processing sketches, including several example programs that can can execute B''x'' commands across multiple daisy-chained Alpha Clock Five units through the serial interface.  (Sample applications to communicate with Alpha Clock Five are provided as .pde files, for use with the Processing development environment.  Processing is a free, cross-platform programming environment, and you can download your copy [http://processing.org/ at processing.org].)
 
 
 
The relevant example sketches are as follows:
 
* AlphaClockv2_BrightnessNumSetDaisy: Change Alpha Clock Five brightness and number character set on two Alpha Clock Five units connected together.
 
* AlphaClockv2_CustomCharsDaisy:  Demonstrates editing and displaying custom characters on multiple Alpha Clock Five units through the serial interface.
 
 
 
 
==== MT: Mode Time ====
 
 
The MT function is used to resume normal display mode-- typically showing the time --after command A0 has been issued.
 
 
 
The full command consists of 13 bytes, as follows:
 
* The header byte, 0xFF
 
* The command MT
 
* A 10-character string (the contents of this string will be ignored).
 
 
 
  
  
Line 215: Line 148:
 
The listed function names are reserved for use in future firmware.  If you extend the firmware with additional serial command functions, it is strongly advised that you do not use the following function names:
 
The listed function names are reserved for use in future firmware.  If you extend the firmware with additional serial command functions, it is strongly advised that you do not use the following function names:
  
* SA  (May be used for Set Alarm time in future firmware)  
+
* B*  (B, followed by any character)
 +
* SA  (May be used for Set Alarm time in future firmware)
 +
* SB  (May be used for Set Brightness in future firmware) 
 
* M*  Where * is in the range 2-9. (May be used for mode setting in future firmware)
 
* M*  Where * is in the range 2-9. (May be used for mode setting in future firmware)
 
* TP  (May be used for producing sounds in future firmware)
 
* TP  (May be used for producing sounds in future firmware)

Please note that all contributions to Evil Mad Scientist Wiki are considered to be released under the GNU Free Documentation License 1.3 (see Evil Mad Scientist Wiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

To edit this page, please answer the question that appears below (more info):

Cancel | Editing help (opens in new window)