From 99e2dc3a12801bbd73d1ad9aaf700253b61b05f5 Mon Sep 17 00:00:00 2001 From: Kattni Rembor Date: Fri, 15 May 2020 12:19:55 -0400 Subject: [PATCH] Slow down blink animation. --- examples/led_animation_all_animations.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/led_animation_all_animations.py b/examples/led_animation_all_animations.py index 1d9504b..8ec5b20 100644 --- a/examples/led_animation_all_animations.py +++ b/examples/led_animation_all_animations.py @@ -22,7 +22,7 @@ pixels = neopixel.NeoPixel(pixel_pin, pixel_num, brightness=0.2, auto_write=False) -blink = animation.Blink(pixels, speed=0.1, color=JADE) +blink = animation.Blink(pixels, speed=0.5, color=JADE) comet = animation.Comet(pixels, speed=0.01, color=PURPLE, tail_length=10, bounce=True) chase = animation.Chase(pixels, speed=0.1, size=3, spacing=6, color=WHITE) pulse = animation.Pulse(pixels, speed=0.1, period=3, color=AMBER) @@ -43,8 +43,8 @@ animations = AnimationSequence( - blink, comet, + blink, chase, pulse, sparkle,