Add files via upload

fixed description
removed reference to advance_on_cycle_complete as not used now
This commit is contained in:
cjsieh 2020-06-19 22:04:36 -05:00 committed by GitHub
parent 1a600cf799
commit a8ad8eba2c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
""" """
This example displays the basic animations in sequence, at a five second interval. This example displays custom color chase animations in sequence, at a six second interval.
For NeoPixel FeatherWing. Update pixel_pin and pixel_num to match your wiring if using For NeoPixel FeatherWing. Update pixel_pin and pixel_num to match your wiring if using
a different form of NeoPixels. a different form of NeoPixels.
@ -59,7 +59,6 @@ animations = AnimationSequence(
custom_color_chase_bgp, custom_color_chase_bgp,
custom_color_chase_br, custom_color_chase_br,
advance_interval=6, advance_interval=6,
# advance_on_cycle_complete=True,
auto_clear=True, auto_clear=True,
) )