We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21d671b commit e735eb8Copy full SHA for e735eb8
components/led/lightbulb_driver/CHANGELOG.md
@@ -1,5 +1,11 @@
1
# ChangeLog
2
3
+## v1.6.1 - 2025-02-19
4
+
5
+### Bug Fix:
6
7
+* Change led_num to uint16_t for ws2812
8
9
## v1.6.0 - 2025-01-13
10
11
### Enhancements:
components/led/lightbulb_driver/drivers/ws2812/ws2812.h
@@ -16,7 +16,7 @@ extern "C" {
16
*
17
*/
18
typedef struct {
19
- uint8_t led_num;
+ uint16_t led_num;
20
gpio_num_t ctrl_io;
21
} driver_ws2812_t;
22
components/led/lightbulb_driver/idf_component.yml
@@ -1,4 +1,4 @@
-version: "1.6.0"
+version: "1.6.1"
description: Provide multiple dimming driver solutions to easily build lightbulb applications
url: https://github.com/espressif/esp-iot-solution/tree/master/components/led/lightbulb_driver
dependencies:
0 commit comments