From 2e834852d548b6db3c1d102bcf7e634489fb8707 Mon Sep 17 00:00:00 2001 From: Will Miles Date: Mon, 1 Sep 2025 22:03:18 -0400 Subject: [PATCH] RmtHI: Add missing includes While these were both fortunately included in Arduino.h, as @coderabbitai suggests, it's best practice to be explicit for anything one uses directly. --- lib/NeoESP32RmtHI/src/NeoEsp32RmtHIMethod.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/NeoESP32RmtHI/src/NeoEsp32RmtHIMethod.cpp b/lib/NeoESP32RmtHI/src/NeoEsp32RmtHIMethod.cpp index bd63c443..8353201f 100644 --- a/lib/NeoESP32RmtHI/src/NeoEsp32RmtHIMethod.cpp +++ b/lib/NeoESP32RmtHI/src/NeoEsp32RmtHIMethod.cpp @@ -31,6 +31,8 @@ License along with NeoPixel. If not, see #if defined(ARDUINO_ARCH_ESP32) +#include +#include "esp_idf_version.h" #include "NeoEsp32RmtHIMethod.h" #include "soc/soc.h" #include "soc/rmt_reg.h"