Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: ESP32 espShow() doesn't de-init RMT #424

Merged
merged 6 commits into from
Mar 6, 2025
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Adafruit_NeoPixel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -418,8 +418,10 @@ extern "C" void k210Show(uint8_t pin, uint8_t *pixels, uint32_t numBytes,
*/
void Adafruit_NeoPixel::show(void) {

#ifndef ARDUINO_ARCH_ESP32
if (!pixels)
return;
#endif

// Data latch = 300+ microsecond pause in the output stream. Rather than
// put a delay at the end of the function, the ending time is noted and
Expand Down