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.
This commit is contained in:
Jorropo
2026-02-15 00:32:19 +01:00
committed by GitHub
co-authored by GitHub
parent b0bd3df226
commit dbef1de286
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -7,6 +7,8 @@
#include "sleep.h"
#ifdef HAS_NCP5623
#include <Wire.h>
#include <NCP5623.h>
#endif
+2
View File
@@ -1,4 +1,6 @@
#ifdef HAS_LP5562
#include <Wire.h>
#include <LP5562.h>
extern LP5562 rgbw;