From dbef1de2861c49fe6f5fe93ced6674f12e227d0f Mon Sep 17 00:00:00 2001 From: Jorropo Date: Sun, 15 Feb 2026 00:32:19 +0100 Subject: [PATCH] workaround NCP5623 and LP5562 I2C builds (#9652) Theses two appear to be buggy on r1-neo and nomadstar meteor pro, they rely on Wire.h being included previously to their import. Idk why other platforms using the same smart LEDs are working while theses ones don't. This should make CI green on the dev branch. --- src/AmbientLightingThread.h | 2 ++ src/graphics/NomadStarLED.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/AmbientLightingThread.h b/src/AmbientLightingThread.h index bd9557c21..d52b10a53 100644 --- a/src/AmbientLightingThread.h +++ b/src/AmbientLightingThread.h @@ -7,6 +7,8 @@ #include "sleep.h" #ifdef HAS_NCP5623 +#include + #include #endif diff --git a/src/graphics/NomadStarLED.h b/src/graphics/NomadStarLED.h index 0633a577e..6633db0c8 100644 --- a/src/graphics/NomadStarLED.h +++ b/src/graphics/NomadStarLED.h @@ -1,4 +1,6 @@ #ifdef HAS_LP5562 +#include + #include extern LP5562 rgbw;