From be20740f980050186a36012a9b5322554d1fce0c Mon Sep 17 00:00:00 2001 From: Joan Date: Sun, 4 Jan 2026 19:18:36 +0100 Subject: [PATCH] Update brightness more frequently --- matrix.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/matrix.py b/matrix.py index 87450f8..b63e5d0 100644 --- a/matrix.py +++ b/matrix.py @@ -544,9 +544,11 @@ class Matrix64Display(SampleBase): if current_time - self.last_update >= 60: self.update_data() - self.update_brightness() self.update_hdd_temps() self.last_update = current_time + + if current_time - self.last_update >= 15: + self.update_brightness() if self.auto_cycle and (current_time - self.last_view_change >= self.view_cycle_interval): self.current_view = (self.current_view + 1) % NUM_VIEWS