Hi,
I'm using the TLC5941 and it's working great except for the fading function for the arduino to control 5 RBG LEDs (15 channels).
so I have a function with this
tlc_addFade(channel, Tlc.get(channel), green, millis(), millis()+(duration*60) );
tlc_addFade(channel+1, Tlc.get(channel+1), red, millis(), millis()+(duration*60) );
tlc_addFade(channel+2, Tlc.get(channel+2), blue, millis(), millis()+(duration*60) );
I would send in 'duration' to being like 300, making the transition to take place over hours. But the transitions occurs within seconds. Do you know what the issue could be?
Thanks.