From 24449ea7be4466e55f6fb66598ace4f964fa987f Mon Sep 17 00:00:00 2001 From: Tanaes Date: Sat, 6 Aug 2022 12:24:32 -0400 Subject: [PATCH] testing --- dotstar_watcher.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/dotstar_watcher.py b/dotstar_watcher.py index 17ff975..0c92edb 100644 --- a/dotstar_watcher.py +++ b/dotstar_watcher.py @@ -126,14 +126,15 @@ def main(): l_blink = Blink(strip_left, speed=0.5, color=PURPLE) while True: - kiln_status.check_status() - animations = AnimationSequence( - AnimationGroup( - l_blink, - task_strip_right(strip_right, kiln_status), - task_strip_top(strip_top, kiln_status) - )) - animations.animate() + # kiln_status.check_status() + # animations = AnimationSequence( + # AnimationGroup( + # l_blink, + # task_strip_right(strip_right, kiln_status), + # task_strip_top(strip_top, kiln_status) + # )) + # animations.animate() + l_blink.animate() sleep(time_int) if __name__ == "__main__":