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 e94fe39 commit 530b263Copy full SHA for 530b263
cores/esp32/esp32-hal-rgb-led.c
@@ -34,7 +34,7 @@ void rgbLedWriteOrdered(uint8_t pin, rgb_led_color_order_t order, uint8_t red_va
34
}
35
36
// default WS2812B color order is G, R, B
37
- const int color[3] = {green_val, red_val, blue_val};
+ int color[3] = {green_val, red_val, blue_val};
38
39
switch (order) {
40
case LED_COLOR_ORDER_RGB:
0 commit comments