From e100a2d69a36b4f08bc7d76a44efa4909bcc1cc7 Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Sat, 21 Sep 2024 20:07:52 +0200 Subject: [PATCH] switch off brightness reduction this was added due to a recommendation from MrF (HUB75) but it seems to work without, too. --- 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 61cc90fb85..e0e875e32b 100644 --- a/wled00/bus_manager.cpp +++ b/wled00/bus_manager.cpp @@ -885,7 +885,7 @@ uint32_t BusHub75Matrix::getPixelColor(uint16_t pix) const { void BusHub75Matrix::setBrightness(uint8_t b, bool immediate) { _bri = b; - if (_bri > 238) _bri=238; + // if (_bri > 238) _bri=238; // not strictly needed. Enable this line if you see glitches at highest brightness. display->setBrightness(_bri); }