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

SerialConnect.cpp

Committer:
isonno
Date:
2013-02-11
Revision:
4:cfef06d8bb96
Parent:
0:6da5625a6946

File content as of revision 4:cfef06d8bb96:

// SerialConnect.cpp - Connect two serial ports together

#include "mbed.h"

#include "SerialConnect.h"

SerialConnect::SerialConnect( PinName txA, PinName rxA,
                              PinName txB, PinName rxB )
: fPortA( txA, rxA ), fPortB( txB, rxB )
{
    fPortA.attach( this, &SerialConnect::HandleAtoB );
    fPortB.attach( this, &SerialConnect::HandleBtoA );
}

void SerialConnect::HandleAtoB()
{
    while (fPortA.readable())
        fPortB.putc(fPortA.getc());
}

void SerialConnect::HandleBtoA()
{
    while (fPortB.readable())
        fPortA.putc( fPortB.getc() );
}