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

DebugLED.h

Committer:
isonno
Date:
2012-01-17
Revision:
3:0ac64c4ca40f

File content as of revision 3:0ac64c4ca40f:

#ifndef __DEBUGLED__
#define __DEBUGLED__

#ifndef MBED_H
#include "mbed.h"
#endif

// Blinking LEDs on the mbed board are used
// for light/motion sensor diagnostics

const int NumLEDs = 4;
extern DigitalOut gLeds[NumLEDs];

void cycleLEDs();

#endif