46 lines
1.4 KiB
Python
46 lines
1.4 KiB
Python
# SPDX-FileCopyrightText: 2021 Kattni Rembor for Adafruit Industries
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
"""
|
|
This example uses AnimationsSequence to display multiple animations in sequence, at a five second
|
|
interval.
|
|
|
|
For NeoPixel FeatherWing. Update pixel_pin and pixel_num to match your wiring if using
|
|
a different form of NeoPixels.
|
|
|
|
This example does not work on SAMD21 (M0) boards.
|
|
"""
|
|
|
|
import board
|
|
import neopixel
|
|
|
|
from adafruit_led_animation.animation.rainbow import Rainbow
|
|
from adafruit_led_animation.animation.rainbowchase import RainbowChase
|
|
from adafruit_led_animation.animation.rainbowcomet import RainbowComet
|
|
from adafruit_led_animation.animation.rainbowsparkle import RainbowSparkle
|
|
from adafruit_led_animation.sequence import AnimationSequence
|
|
|
|
# Update to match the pin connected to your NeoPixels
|
|
pixel_pin = board.D6
|
|
# Update to match the number of NeoPixels you have connected
|
|
pixel_num = 32
|
|
|
|
pixels = neopixel.NeoPixel(pixel_pin, pixel_num, brightness=0.5, auto_write=False)
|
|
|
|
rainbow = Rainbow(pixels, speed=0.1, period=2)
|
|
rainbow_chase = RainbowChase(pixels, speed=0.1, size=5, spacing=3)
|
|
rainbow_comet = RainbowComet(pixels, speed=0.1, tail_length=7, bounce=True)
|
|
rainbow_sparkle = RainbowSparkle(pixels, speed=0.1, num_sparkles=15)
|
|
|
|
|
|
animations = AnimationSequence(
|
|
rainbow,
|
|
rainbow_chase,
|
|
rainbow_comet,
|
|
rainbow_sparkle,
|
|
advance_interval=5,
|
|
auto_clear=True,
|
|
)
|
|
|
|
while True:
|
|
animations.animate()
|