Skip to content

Commit 9ec6d18

Browse files
authored
Fixes issue related to writing RGB LED fast in a row
1 parent b318433 commit 9ec6d18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/esp32/esp32-hal-rgb-led.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ void neopixelWrite(uint8_t pin, uint8_t red_val, uint8_t green_val, uint8_t blue
4343
i++;
4444
}
4545
}
46-
rmtWrite(rmt_send, led_data, 24);
46+
rmtWriteBlocking(rmt_send, led_data, 24);
4747
}

0 commit comments

Comments
 (0)