From 6176e1acb41bb540d0478e42d39a341d18939fe0 Mon Sep 17 00:00:00 2001 From: Emil Muratov Date: Sat, 20 Feb 2021 20:55:46 +0300 Subject: Fixed brightness set to 75% in examples Signed-off-by: Emil Muratov --- examples/2_PatternPlasma/2_PatternPlasma.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/2_PatternPlasma') diff --git a/examples/2_PatternPlasma/2_PatternPlasma.ino b/examples/2_PatternPlasma/2_PatternPlasma.ino index b7bc791..a1c4a23 100644 --- a/examples/2_PatternPlasma/2_PatternPlasma.ino +++ b/examples/2_PatternPlasma/2_PatternPlasma.ino @@ -138,7 +138,7 @@ void setup() { dma_display = new MatrixPanel_I2S_DMA(mxconfig); // let's adjust default brightness to about 75% - dma_display->setBrightness8(96); // range is 0-255, 0 - 0%, 255 - 100% + dma_display->setBrightness8(192); // range is 0-255, 0 - 0%, 255 - 100% // Allocate memory and start DMA display if( not dma_display->begin() ) -- cgit v1.3.1