Skip to content

Commit

Permalink
switch off brightness reduction
Browse files Browse the repository at this point in the history
this was added due to a recommendation from MrF (HUB75)  but it seems to work without, too.
  • Loading branch information
softhack007 committed Sep 21, 2024
1 parent 28fe5cb commit e100a2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wled00/bus_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit e100a2d

Please sign in to comment.