Skip to content

Commit 90c0773

Browse files
committed
fix: Add heap dependency to ws2812 and sm16825
1 parent 8160bf5 commit 90c0773

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

components/led/lightbulb_driver/drivers/sm16825e/sm16825e.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
#include <driver/spi_master.h>
1111
#include <hal/spi_hal.h>
1212
#include <driver/gpio.h>
13-
13+
#include "esp_heap_caps.h"
14+
#include "esp_idf_version.h"
1415
#include "driver_utils.h"
1516
#include "sm16825e.h"
1617

components/led/lightbulb_driver/drivers/ws2812/ws2812.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
#include <esp_log.h>
1010
#include <driver/spi_master.h>
1111
#include <hal/spi_hal.h>
12-
12+
#include "esp_heap_caps.h"
13+
#include "esp_idf_version.h"
1314
#include "driver_utils.h"
1415
#include "ws2812.h"
1516

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.11.0"
1+
version: "1.11.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)