Jan Delgado

Results 53 comments of Jan Delgado

You have to use my patched version of FastLed: https://github.com/jandelgado/FastLED/tree/82ec8ba5046ae36bff3b82e9c2efdf4caa4559d8 since my PR is not yet merged: https://github.com/FastLED/FastLED/pull/1158

Thanks for the contribution! However, in order to make an executable example, it still needs some polishing. Since I've a PCA9685 somewhere around, I can take care of that and...

Could you please post a complete example sketch? Calling `Off` should turn the LED off

I've assembled an example that shows how to switch through some effects by pressing a button (uses newest JLed Version 4.10.0). After each effect finishes, the LED is turned off....

Yes, with JLed version 4.11.0 you can do things like: ```c++ // JLed dynamic sequence demo // // Toggles between sequences using a push button. // After a sequence is...

@TheLastGimbus: If the period is e.g. 500 like in your example, the value for t goes from 0 to 499, not from 0 to 500, t=500 will not be reached....

The current output level of an LED is determined by evaluation the associated `brightness evaluator`, which is basically a function of time and period that returns a brightness level between...

That's left as an excercise to the reader ;) - I'll try to provide an example in the next days... Look at #72 for another example for a user defined...

Hi, could you pleas post the complete sketch? On which micro controller are you testing?