Source code for the Curilights Controller. See http://www.saccade.com/writing/projects/CuriController/ for details.

Dependencies:   FatFileSystem mbed

This is the source code for the Curilights controller. This lets you interactively control a string of Curilights. It provides a simple click-wheel user interface for changing colors, brightness and behavior. It responds to movement and lighting.

Finished Controller

/media/uploads/isonno/nxp3872_controllerclose.jpg

System Block Diagram

/media/uploads/isonno/blockdiagram.png

Committer:
isonno
Date:
Mon Feb 11 05:04:18 2013 +0000
Revision:
4:cfef06d8bb96
Parent:
0:6da5625a6946
Minor changes to add backlight routines.  Not hooked up yet, shouldn't affect build operation.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
isonno 0:6da5625a6946 1 const unsigned char WheelCursor_data[] = {
isonno 0:6da5625a6946 2 0x00,0x00,0x37,0x88,0x40,0x00,0x00,
isonno 0:6da5625a6946 3 0x00,0x3D,0xFF,0xFF,0xFE,0x60,0x00,
isonno 0:6da5625a6946 4 0x03,0xFF,0xFF,0xFF,0xFF,0xF8,0x00,
isonno 0:6da5625a6946 5 0x1E,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,
isonno 0:6da5625a6946 6 0x6F,0xFF,0xFF,0x0F,0xFF,0xFF,0xC0,
isonno 0:6da5625a6946 7 0xBF,0xFF,0xF0,0x00,0xFF,0xFF,0xF0,
isonno 0:6da5625a6946 8 0xCF,0xFF,0x00,0x00,0x0F,0xFF,0xF0,
isonno 0:6da5625a6946 9 0x9F,0xFF,0xF0,0x00,0xFF,0xFF,0xF0,
isonno 0:6da5625a6946 10 0x4F,0xFF,0xFF,0x0F,0xFF,0xFF,0x90,
isonno 0:6da5625a6946 11 0x0B,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,
isonno 0:6da5625a6946 12 0x01,0xCF,0xFF,0xFF,0xFF,0xF3,0x00,
isonno 0:6da5625a6946 13 0x00,0x06,0xEF,0xFF,0xF9,0x10,0x00,
isonno 0:6da5625a6946 14 0x00,0x00,0x01,0x32,0x00,0x00,0x00
isonno 0:6da5625a6946 15 };
isonno 0:6da5625a6946 16
isonno 0:6da5625a6946 17 const sprite_data_t WheelCursor_sprt = { WheelCursor_data, 13, 13 };
isonno 0:6da5625a6946 18