From 584ca5e8aec26c90b49b29d064da2d9a1ab679aa Mon Sep 17 00:00:00 2001 From: Will Tatam Date: Sat, 13 Jul 2024 13:51:59 +0100 Subject: [PATCH] Double buffer needed to prevent flicker for effects like GEQ --- wled00/bus_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/bus_manager.cpp b/wled00/bus_manager.cpp index 9ad6c948..bb4c4bc8 100644 --- a/wled00/bus_manager.cpp +++ b/wled00/bus_manager.cpp @@ -490,7 +490,7 @@ void BusNetwork::cleanup() { BusHub75Matrix::BusHub75Matrix(BusConfig &bc) : Bus(bc.type, bc.start, bc.autoWhite) { - mxconfig.double_buff = false; // <------------- Turn on double buffer + mxconfig.double_buff = true; // <------------- Turn on double buffer fourScanPanel = nullptr;