From b0498453809d3d609e431c70298c34cb0296020f Mon Sep 17 00:00:00 2001 From: Will Tatam Date: Tue, 24 Oct 2023 22:46:10 +0100 Subject: [PATCH] Drop brightness --- wled00/bus_manager.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/wled00/bus_manager.cpp b/wled00/bus_manager.cpp index f4dcb8dd..66bc1ef0 100644 --- a/wled00/bus_manager.cpp +++ b/wled00/bus_manager.cpp @@ -484,11 +484,10 @@ BusSmartMatrix::BusSmartMatrix(BusConfig &bc) : Bus(bc.type, bc.start, bc.autoWh this->_len = (kMatrixWidth * kMatrixHeight); smartMatrix.addLayer(&backgroundLayer); - smartMatrix.setBrightness(brightness); USER_PRINTF("BusSmartMatrix: kMatrixWidth=%u, kMatrixHeight=%u", kMatrixWidth, kMatrixHeight); smartMatrix.begin(); - smartMatrix.setBrightness(125); // TODO - hard code for now + smartMatrix.setBrightness(50); // TODO - hard code for now this->buffer = backgroundLayer.backBuffer();