From 60fbf07bcad983344c63ebd1dcf47708050d3daa Mon Sep 17 00:00:00 2001 From: Will Tatam Date: Wed, 10 Jul 2024 23:01:21 +0100 Subject: [PATCH] Fix mx_width and height for 4scan --- wled00/bus_manager.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wled00/bus_manager.cpp b/wled00/bus_manager.cpp index 2bd0a338..9ad6c948 100644 --- a/wled00/bus_manager.cpp +++ b/wled00/bus_manager.cpp @@ -513,6 +513,10 @@ BusHub75Matrix::BusHub75Matrix(BusConfig &bc) : Bus(bc.type, bc.start, bc.autoWh mxconfig.mx_height = 32 / 2; break; case 106: + mxconfig.mx_width = 64 * 2; + mxconfig.mx_height = 32 / 2; + break; + case 107: mxconfig.mx_width = 64 * 2; mxconfig.mx_height = 64 / 2; break;