From f5087f008f069041c4aa05cc481b4af58d2b20c4 Mon Sep 17 00:00:00 2001 From: Tanaes Date: Sat, 6 Aug 2022 12:32:30 -0400 Subject: [PATCH] testing --- dotstar_watcher.py | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/dotstar_watcher.py b/dotstar_watcher.py index 0d7f06c..5961f77 100644 --- a/dotstar_watcher.py +++ b/dotstar_watcher.py @@ -124,16 +124,18 @@ def main(): dotstar_num - substrip_len) l_blink = Blink(strip_left, speed=0.5, color=PURPLE) - - animations = AnimationSequence( - AnimationGroup( - l_blink - # task_strip_right(strip_right, kiln_status), - # task_strip_top(strip_top, kiln_status) - )) + while True: kiln_status.check_status() + right = task_strip_right(strip_right, kiln_status) + top = task_strip_top(strip_top, kiln_status) + animations = AnimationSequence( + AnimationGroup( + l_blink, + right, + top + )) animations.animate() sleep(time_int)