From ddee6c8ac79946979d77f23b912aa8d7c490f5cb Mon Sep 17 00:00:00 2001 From: janeptrv Date: Fri, 6 Nov 2020 23:13:41 -0500 Subject: [PATCH] more debugging --- light_manager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/light_manager.py b/light_manager.py index 8751c93..689c7ea 100644 --- a/light_manager.py +++ b/light_manager.py @@ -25,6 +25,7 @@ class LightStrip: n = np.n for i in range(n): col = self.pattern(i, t) + logging.debug("TEST VALUES: np {} col {} same {}".format(np[i], col, np[i] != col)) if np[i] != col: np[i] = col logging.debug("CHANGE COLOR OF PIXEL {} TO {} ON TICK {}".format(i, col, t))