Skip to content

Commit

Permalink
Merge pull request #423 from rishi9699/patch-1
Browse files Browse the repository at this point in the history
incorporating relevant changes from led_strip v3.0.0 ()
  • Loading branch information
suda-morris authored Oct 28, 2024
2 parents c90025b + afe07bb commit 7d78276
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 8 deletions.
1 change: 0 additions & 1 deletion bsp/esp32_c3_lcdkit/esp32_c3_lcdkit.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ static i2s_chan_handle_t i2s_tx_chan;
static const led_strip_config_t bsp_strip_config = {
.strip_gpio_num = BSP_RGB_CTRL,
.max_leds = 1,
.led_pixel_format = LED_PIXEL_FORMAT_GRB,
.led_model = LED_MODEL_WS2812,
.flags.invert_out = false,
};
Expand Down
1 change: 0 additions & 1 deletion bsp/esp32_s3_korvo_1/esp32_s3_korvo_1.c
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,6 @@ esp_err_t bsp_iot_button_create(button_handle_t btn_array[], int *btn_cnt, int b
static const led_strip_config_t bsp_leds_rgb_strip_config = {
.strip_gpio_num = BSP_LED_RGB_GPIO, // The GPIO that connected to the LED strip's data line
.max_leds = BSP_LED_NUM, // The number of LEDs in the strip,
.led_pixel_format = LED_PIXEL_FORMAT_GRB, // Pixel format of your LED strip
.led_model = LED_MODEL_WS2812, // LED strip model
.flags.invert_out = false, // whether to invert the output signal
};
Expand Down
4 changes: 2 additions & 2 deletions bsp/esp32_s3_korvo_1/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
version: "1.1.1"
version: "1.1.2"
description: Board Support Package (BSP) for ESP32-S3-KORVO-1
url: https://github.com/espressif/esp-bsp/tree/master/bsp/esp32_s3_korvo_1

targets:
- esp32s3

tags:
- bsp
- bsp

dependencies:
idf: ">=4.4"
Expand Down
2 changes: 1 addition & 1 deletion bsp/esp_bsp_devkit/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

version: "1.0.0"
version: "1.0.1"
description: DevKit Board Support Package (BSP)
url: https://github.com/espressif/esp-bsp/tree/master/bsp/esp_bsp_devkit

Expand Down
1 change: 0 additions & 1 deletion bsp/esp_bsp_devkit/src/esp_bsp_devkit.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ static led_indicator_gpio_config_t bsp_leds_gpio_config[] = {
static const led_strip_config_t bsp_leds_rgb_strip_config = {
.strip_gpio_num = CONFIG_BSP_LED_RGB_GPIO, // The GPIO that connected to the LED strip's data line
.max_leds = BSP_LED_NUM, // The number of LEDs in the strip,
.led_pixel_format = LED_PIXEL_FORMAT_GRB, // Pixel format of your LED strip
.led_model = LED_MODEL_WS2812, // LED strip model
.flags.invert_out = false, // whether to invert the output signal
};
Expand Down
2 changes: 1 addition & 1 deletion bsp/esp_bsp_generic/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

version: "1.2.0"
version: "1.2.1"
description: Generic Board Support Package (BSP)
url: https://github.com/espressif/esp-bsp/tree/master/bsp/esp_bsp_generic

Expand Down
1 change: 0 additions & 1 deletion bsp/esp_bsp_generic/src/esp_bsp_generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,6 @@ static led_indicator_gpio_config_t bsp_leds_gpio_config[] = {
static const led_strip_config_t bsp_leds_rgb_strip_config = {
.strip_gpio_num = CONFIG_BSP_LED_RGB_GPIO, // The GPIO that connected to the LED strip's data line
.max_leds = BSP_LED_NUM, // The number of LEDs in the strip,
.led_pixel_format = LED_PIXEL_FORMAT_GRB, // Pixel format of your LED strip
.led_model = LED_MODEL_WS2812, // LED strip model
.flags.invert_out = false, // whether to invert the output signal
};
Expand Down

0 comments on commit 7d78276

Please sign in to comment.