From 368a0eea8a03eb4cea8fe26dd6790e97ceb25537 Mon Sep 17 00:00:00 2001 From: pseud0sphere <99095299+pseud0sphere@users.noreply.github.com> Date: Mon, 9 Jun 2025 01:46:27 -0400 Subject: [PATCH] Change RP2040 PIO SK6812 timings (#9020) --- esphome/components/rp2040_pio_led_strip/light.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/rp2040_pio_led_strip/light.py b/esphome/components/rp2040_pio_led_strip/light.py index 4b6a80e78b..9107db9b7f 100644 --- a/esphome/components/rp2040_pio_led_strip/light.py +++ b/esphome/components/rp2040_pio_led_strip/light.py @@ -173,7 +173,7 @@ RGB_ORDERS = { CHIPSET_TIMINGS = { "WS2812": LEDStripTimings(20, 40, 46, 34), "WS2812B": LEDStripTimings(23, 49, 46, 26), - "SK6812": LEDStripTimings(17, 52, 34, 34), + "SK6812": LEDStripTimings(20, 54, 38, 38), "SM16703": LEDStripTimings(17, 52, 52, 17), }