neopixel ring code update
neopixel ring code update
This commit is contained in:
parent
6bad204da8
commit
86219c6bd4
1 changed files with 8 additions and 3 deletions
|
|
@ -9,8 +9,7 @@ from adafruit_led_animation.animation.rainbow import Rainbow
|
|||
from adafruit_led_animation.animation.rainbowsparkle import RainbowSparkle
|
||||
from adafruit_led_animation.animation.rainbowcomet import RainbowComet
|
||||
from adafruit_led_animation.sequence import AnimationSequence
|
||||
from adafruit_led_animation.color import RED, PURPLE, AMBER, JADE
|
||||
from _pixelbuf import colorwheel
|
||||
from adafruit_led_animation.color import PURPLE
|
||||
|
||||
# Update this to match the number of NeoPixel LEDs connected to your board.
|
||||
num_pixels = 124
|
||||
|
|
@ -24,7 +23,13 @@ rainbow_comet = RainbowComet(pixels, speed=.01, tail_length=20, bounce=True)
|
|||
pulse = Pulse(pixels, speed=.05, color=PURPLE, period=3)
|
||||
|
||||
animations = AnimationSequence(
|
||||
pulse, rainbow_sparkle, rainbow_comet, rainbow, advance_interval=5, auto_clear=True, random_order=False
|
||||
pulse,
|
||||
rainbow_sparkle,
|
||||
rainbow_comet,
|
||||
rainbow,
|
||||
advance_interval=5,
|
||||
auto_clear=True,
|
||||
random_order=False
|
||||
)
|
||||
|
||||
while True:
|
||||
|
|
|
|||
Loading…
Reference in a new issue