From 17c26a404a9947fdbd2be3176974d0ba83d42e8a Mon Sep 17 00:00:00 2001 From: Tanaes Date: Sat, 6 Aug 2022 12:30:16 -0400 Subject: [PATCH] testing --- dotstar_watcher.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/dotstar_watcher.py b/dotstar_watcher.py index 0c92edb..0d7f06c 100644 --- a/dotstar_watcher.py +++ b/dotstar_watcher.py @@ -124,17 +124,17 @@ 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() - # animations = AnimationSequence( - # AnimationGroup( - # l_blink, - # task_strip_right(strip_right, kiln_status), - # task_strip_top(strip_top, kiln_status) - # )) - # animations.animate() - l_blink.animate() + kiln_status.check_status() + animations.animate() sleep(time_int) if __name__ == "__main__":