-
On my board I have some WS2812B connected to GPIO33 of en ESP32.
But it does not compile with the following error:
The signature of the function seems correct to my parameters. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
(This was not an issue, issues are for bugs, not questions, it was moved to discussions) The Wiki area for the API includes the constructors and Begin. The signatures are not correct at all. WS2812b are not DotStars (two wire smart LEDS). This library supports both Two Wire and One Wire. NeoPixels likes WS2812 are one wire smart LED. The features and methods are different for the two, and the constructor and Begin that you call are also different. If you review the wiki and examples you can see examples uses for both. Using the more specific method name (the one you uses would work also)....
|
Beta Was this translation helpful? Give feedback.
(This was not an issue, issues are for bugs, not questions, it was moved to discussions)
The Wiki area for the API includes the constructors and Begin.
The signatures are not correct at all. WS2812b are not DotStars (two wire smart LEDS). This library supports both Two Wire and One Wire. NeoPixels likes WS2812 are one wire smart LED. The features and methods are different for the two, and the constructor and Begin that you call are also different. If you review the wiki and examples you can see examples uses for both.
Using the more specific method name (the one you uses would work also)....