Skip to content

Commit 27f3136

Browse files
committed
Fixed example code
1 parent 766b226 commit 27f3136

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_led_animation/timedsequence.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class TimedAnimationSequence(AnimationSequence):
6868
blink = blink_animation.Blink(strip_pixels, 0.2, color.RED)
6969
comet = comet_animation.Comet(strip_pixels, 0.1, color.BLUE)
7070
sparkle = sparkle_animation.Sparkle(strip_pixels, 0.05, color.GREEN)
71-
animations = AnimationSequence(blink, 5, comet, 3, sparkle, 7)
71+
animations = TimedAnimationSequence(blink, 5, comet, 3, sparkle, 7)
7272
while True:
7373
animations.animate()
7474
"""

0 commit comments

Comments
 (0)