|
26 | 26 | comet = animation.Comet(pixels, speed=0.01, color=PURPLE, tail_length=10, bounce=True)
|
27 | 27 | chase = animation.Chase(pixels, speed=0.1, size=3, spacing=6, color=WHITE)
|
28 | 28 | pulse = animation.Pulse(pixels, speed=0.1, period=3, color=AMBER)
|
29 |
| -sparkle = adafruit_led_animation.sparkle.Sparkle(pixels, speed=0.1, color=PURPLE, num_sparkles=10) |
| 29 | +sparkle = adafruit_led_animation.sparkle.Sparkle( |
| 30 | + pixels, speed=0.1, color=PURPLE, num_sparkles=10 |
| 31 | +) |
30 | 32 | solid = animation.Solid(pixels, color=JADE)
|
31 | 33 | rainbow = adafruit_led_animation.rainbow.Rainbow(pixels, speed=0.1, period=2)
|
32 |
| -sparkle_pulse = adafruit_led_animation.sparkle.SparklePulse(pixels, speed=0.1, period=3, color=JADE) |
33 |
| -rainbow_comet = adafruit_led_animation.rainbow.RainbowComet(pixels, speed=0.1, tail_length=7, bounce=True) |
| 34 | +sparkle_pulse = adafruit_led_animation.sparkle.SparklePulse( |
| 35 | + pixels, speed=0.1, period=3, color=JADE |
| 36 | +) |
| 37 | +rainbow_comet = adafruit_led_animation.rainbow.RainbowComet( |
| 38 | + pixels, speed=0.1, tail_length=7, bounce=True |
| 39 | +) |
34 | 40 | rainbow_chase = adafruit_led_animation.rainbow.RainbowChase(
|
35 | 41 | pixels, speed=0.1, size=3, spacing=2, wheel_step=8
|
36 | 42 | )
|
|
0 commit comments