From 383773a0fe268cf50033960e93b1beaebbbe919f Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Sat, 17 Jan 2026 21:35:09 +0100 Subject: [PATCH] use clear() method of lib.display --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index b371682..78f4d21 100755 --- a/main.py +++ b/main.py @@ -72,7 +72,7 @@ def stop(): stop_event.set() animation_thread.join() # Clear the display - lib.display.matrix.matrix.Clear() + lib.display.matrix.clear() return jsonify({"status": "stopped"}) if __name__ == "__main__":