Addidis posted the above short video of his project controlling a door lock using the ez430-Chronos watch. He describes the hardware:
Chipkit MAX32 , 2 Xbees, Chronos Control center, and a Chronos watch controlling a servo. (I’m gonna hot glue it to my door knob lock switch and not have to use my key any more!)
The Chronos firmware is untouched, This uses the Chronos control center and some simple code for Arduino / Chipkit. I used Hyperterminal to connect to the Xbees, and then highlighted the terminal and the Chronos control center key presses are passed to the Xbee.
It is a combination of the serial switch case example and the servo example.
Addidis has shared the following Arduino sketch:
// Sweep
// by BARRAGAN
// This example code is in the public domain.
// NOTE: UART will be disabled when servo is attached to pin 0 or 1.
// Set the chronos to put out ‘u’ and ‘l’ for the keys you wish to use.
#include <Servo.h>
Servo myservo; // create servo object to control a servo
// a maximum of eight servo objects can be created
int inByte = 0;
int pos = 0; // variable to store the servo position
void setup()
{
Serial.begin(9600);
myservo.attach(9); // attaches the servo on pin 9 to the servo object
}
void loop()
{
if (Serial.available() > 0) {
// get incoming byte:
inByte = Serial.read();
switch (inByte){
case ‘u’:
myservo.write(0); // tell servo to go to position in variable ‘pos’
delay(15);
break;
case ‘l’:
myservo.write(180); // tell servo to go to position in variable ‘pos’
delay(15);
break;
delay(35);
}
inByte =0;
}
}

I would like to see an edited chronos control center that can be linked to a window, Kind of like old macro programs would link to the game instance so it doesnt need to be highlighted. Ive got that in my bucket of ideas to work on.
Stolen! Haha!
After ordering my watch, and thinking about what I would do with it, I decided to make a door lock. There is one linked on the TI’s wiki page for Chronos, and now this one! My idea is totally unoriginal now!
The one linked from the TI site is actually quite good project. It recognizes rhythm of accelerometer changes (tapping the watch) so you unlock your door with your favorite tune :D
Not sure what do you mean by “linked to a window” addidas? You wanna use the “mouse & cursor” control from the cc but only in one window? There’s a python version of all cc apps so you might wanna modify those .. not sure if widows exe cames with source too ..
With old macro programs , you open the macro app, in this case chronos control center and the next window opened is forever bound to chronos control center. So I could run hyperterminal , and chronos control center minimized and the key-presses would still be passed. I think its a large handicap to use this method and have to have the hyperterminal window “on top” for it to work.
If Im being totally honest I made a point to use a different (and easy) method to do this. Really just to show how easy it can be to get something happening. But also because as soon as my watch arrived I , like dan realized there was some sort of watch on the TI site. I figured I was safe not copying the TI site one , using a PIC. :)