From e4f03649e5bc371e1b0d63b07802dfdf6f08a804 Mon Sep 17 00:00:00 2001 From: lucarin91 Date: Wed, 29 Oct 2025 10:52:53 +0100 Subject: [PATCH] fix: full matrix brightness --- sketch/sketch.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sketch/sketch.ino b/sketch/sketch.ino index 694d40e..cdeda9c 100644 --- a/sketch/sketch.ino +++ b/sketch/sketch.ino @@ -54,7 +54,7 @@ void matrix_draw(String frame){ } for (int i = 0; i < 104; i++) { if (frame.charAt(i) == '1') { - shades[i] = 1; + shades[i] = 7; } else{ shades[i] = 0; }