hi, anyone know how I could use tiny85_tlc5940.h (attached) to make a fading sequence?
at this moment, this script makes 1 led blink:
#include <Arduino.h>
#include "Tiny85_TLC5940.h"
void updateLEDs()
{
}
void setup()
{
}
void loop()
{
tlc5940.init();
tlc5940.set(1, 4095);
delay(100);
tlc5940.update();
updateLEDs();
}
Tiny85_TLC5940.h (4.43 KB)