Skip to content

Commit e735eb8

Browse files
light: change led_num to uint16
1 parent 21d671b commit e735eb8

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

components/led/lightbulb_driver/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# ChangeLog
22

3+
## v1.6.1 - 2025-02-19
4+
5+
### Bug Fix:
6+
7+
* Change led_num to uint16_t for ws2812
8+
39
## v1.6.0 - 2025-01-13
410

511
### Enhancements:

components/led/lightbulb_driver/drivers/ws2812/ws2812.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ extern "C" {
1616
*
1717
*/
1818
typedef struct {
19-
uint8_t led_num;
19+
uint16_t led_num;
2020
gpio_num_t ctrl_io;
2121
} driver_ws2812_t;
2222

components/led/lightbulb_driver/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "1.6.0"
1+
version: "1.6.1"
22
description: Provide multiple dimming driver solutions to easily build lightbulb applications
33
url: https://github.com/espressif/esp-iot-solution/tree/master/components/led/lightbulb_driver
44
dependencies:

0 commit comments

Comments
 (0)