aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authormrfaptastic <12006953+mrfaptastic@users.noreply.github.com>2021-02-20 19:02:11 +0000
committerGitHub <noreply@github.com>2021-02-20 19:02:11 +0000
commit76a585e1f8bdae56d66a1dff7ef06c7baffdce91 (patch)
tree46bc97d95a7105f155103e77468f835a1b376413 /examples
parentb1092495e9424dfc8a3eb97d0cf92fcc9b8caf5d (diff)
parent6176e1acb41bb540d0478e42d39a341d18939fe0 (diff)
Merge pull request #90 from mrfaptastic/docs
Docs
Diffstat (limited to 'examples')
-rw-r--r--examples/2_PatternPlasma/2_PatternPlasma.ino2
-rw-r--r--examples/3_FM6126Panel/3_FM6126Panel.ino2
-rw-r--r--examples/ChainedPanels/ChainedPanels.ino2
3 files changed, 3 insertions, 3 deletions
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() )
diff --git a/examples/3_FM6126Panel/3_FM6126Panel.ino b/examples/3_FM6126Panel/3_FM6126Panel.ino
index 114247c..3b706e1 100644
--- a/examples/3_FM6126Panel/3_FM6126Panel.ino
+++ b/examples/3_FM6126Panel/3_FM6126Panel.ino
@@ -58,7 +58,7 @@ void setup(){
// In the setup() function do something like:
// 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() )
diff --git a/examples/ChainedPanels/ChainedPanels.ino b/examples/ChainedPanels/ChainedPanels.ino
index 57fa15b..2f19775 100644
--- a/examples/ChainedPanels/ChainedPanels.ino
+++ b/examples/ChainedPanels/ChainedPanels.ino
@@ -192,7 +192,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() )