24 lines
679 B
Python
24 lines
679 B
Python
# SPDX-FileCopyrightText: 2024 Tim Cocks for Adafruit Industries
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
import board
|
|
import neopixel
|
|
|
|
from sweep import SweepAnimation
|
|
|
|
from adafruit_led_animation.color import PINK
|
|
|
|
# Update to match the pin connected to your NeoPixels
|
|
pixel_pin = board.D10
|
|
# Update to match the number of NeoPixels you have connected
|
|
pixel_num = 32
|
|
|
|
# initialize the neopixels. Change out for dotstars if needed.
|
|
pixels = neopixel.NeoPixel(pixel_pin, pixel_num, brightness=0.02, auto_write=False)
|
|
|
|
# initialize the animation
|
|
sweep = SweepAnimation(pixels, speed=0.05, color=PINK)
|
|
|
|
while True:
|
|
# call animation to show the next animation frame
|
|
sweep.animate()
|