22 lines
654 B
Python
22 lines
654 B
Python
# SPDX-FileCopyrightText: 2024 Tim Cocks for Adafruit Industries
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
import board
|
|
import neopixel
|
|
|
|
from snake import SnakeAnimation
|
|
|
|
# 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
|
|
snake = SnakeAnimation(pixels, speed=0.1, color=0xff00ff, width=8, height=4)
|
|
|
|
while True:
|
|
# call animation to show the next animation frame
|
|
snake.animate()
|