From b0a63c59e1226f9507170740405e12ce0ee97256 Mon Sep 17 00:00:00 2001 From: Will Tatam Date: Sat, 10 Feb 2024 13:20:34 +0000 Subject: [PATCH] Fix RGB capability issue with HUB75 output --- wled00/bus_manager.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wled00/bus_manager.cpp b/wled00/bus_manager.cpp index a27ec5a6..359ff0a3 100644 --- a/wled00/bus_manager.cpp +++ b/wled00/bus_manager.cpp @@ -570,6 +570,9 @@ uint8_t oePin = 14; if( not display->begin() ) { USER_PRINTLN("****** !KABOOM! I2S memory allocation failed ***********"); } + else { + _valid = true; + } USER_PRINTLN("MatrixPanel_I2S_DMA started"); }