Jan Delgado
Jan Delgado
I've put the request ob top of the backlog and will start working on it
I think the best solution, which also would work with other effects, would be to introduce a `MinBrightness` method and scale all effects to `[minBrightness, maxBrightness]`. That would also allow...
Just to make sure we are thinking in the same directions: in the case of the `FadeOn` effect for example, when starting the fade with some value (which is currently...
For the Arduino platform it is not supported currently, because the underlying Arduino API used does not support it. The ESP32 platform allows to set a custom frequency. But for...
@Mark-81, is the question answered?
The type is simply `JLed`, so you could for example pass a reference with something like (make sure to a recent JLed version): ```c++ #include auto led = JLed(LED_BUILTIN).Blink(1000, 1000).Repeat(5);...
I'll provide an example showing how to drive built-in ESP32 PWM's and an PCA9685 driver in the next days.
Could you please provide an example what the exact problem is (`code`)?
There is intentionally no base class to keep the memory footprint low. But coincidentially I am working on a feature allowing to stuff different objects like `JLed` objects or `JLedSequence`...
I had the same problem (index errors and garbled output in a high frequence rendering scenario). It completely disappeared after making the client code thread safe by using an object...