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__":