tiny85_tlc5940.h fade query

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)

// Set the PWM value of one of the PWM channels, 'value' in range [0..4095]
//
// eg. "set(2,2048)" sets LED 2 to 50% on, 50% off

The first basic example in the IDE shows you how to fade a LED.
Leo..