I happened to see something in S41system that looked like it was changing the color of the LED, and a bit of poking around demonstrated that you can set the color via "set_RGB r g b" where r g and b are 0-255 values for red, green, and blue.
eg
Code: Select all
set_rgb 0 255 0
Code: Select all
set_rgb 255 165 0
When I first started poking at it, I noticed the LED would change, but there seemed to be a watchdog or something else running every 5 seconds or so which would set it back to its previous value. It would always change back, and always in less than 5 seconds. This was before I had it connected to the Wink service, though, so it may have been whatever routine checks for cloud connectivity.
Just thought I'd share maybe, as I haven't seen anything about that function so far.