I'm looking for a library for controlling WS2811 led strip. I tried with FastLED but it seems to be too complex and lack of some functions what I need. My purpose is just change of color and making some effects and having ability to change speed of effects. Anyone knows other library which is suitable for my purpose. Thanks in advance.
Set the leds (via CRGB objects) whatever color you want in every why you possible want (all, RGB, HSV, presets etc)
call FastLED.show() to output it
repeat from 4 to make effects
In my opinion THE most complete library to drive pixels. Especially the implementation of HSV which is the best way to control the color is great and most other libraries lack that.
Set the leds (via CRGB objects) whatever color you want in every why you possible want (all, RGB, HSV, presets etc)
call FastLED.show() to output it
repeat from 4 to make effects
In my opinion THE most complete library to drive pixels. Especially the implementation of HSV which is the best way to control the color is great and most other libraries lack that.
The difficult is that the library is not ideal for me, I’m trouble to customize to fulfil my purpose. Anyway, this library still is comprehensive and so good. Thanks