OK folks, all I want to do is blink 1 led from a TLC5940 for 1 second on, 1 second off ( eventually doing it with 16 ) .... why is this not working????
#include "Tlc5940.h"
void setup()
{
Tlc.init();
}
void loop()
{
Tlc.clear();
{
Tlc.set(9,2000);
delay(1000);
Tlc.set(9,30);
delay(1000);
}
Tlc.update();
}
Thanks,
Nick