From 291835f04ca9ada363e253048a081cd4b50a6984 Mon Sep 17 00:00:00 2001 From: mrfaptastic <12006953+mrfaptastic@users.noreply.github.com> Date: Fri, 14 Aug 2020 10:08:48 +0100 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 924a35e..4196c5f 100644 --- a/README.md +++ b/README.md @@ -111,8 +111,9 @@ If you experience ghosting, you will need to reduce the brightness level, not al ``` void setup() { Serial.begin(115200); - matrix.setPanelBrightness(16); // SETS THE BRIGHTNESS HERE. 60 OR LOWER IDEAL. matrix.begin(R1_PIN, G1_PIN, B1_PIN, R2_PIN, G2_PIN, B2_PIN, A_PIN, B_PIN, C_PIN, D_PIN, E_PIN, LAT_PIN, OE_PIN, CLK_PIN ); // setup the LED matrix + matrix.setPanelBrightness(16); // SETS THE BRIGHTNESS HERE. 60 OR LOWER IDEAL. + matrix.clearScreen(); // You must clear the screen for the new brightness level to take effect. }