25 lines
727 B
Python
25 lines
727 B
Python
# SPDX-FileCopyrightText: 2021 Kattni Rembor for Adafruit Industries
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
"""
|
|
This simpletest example displays the Blink animation.
|
|
|
|
For NeoPixel FeatherWing. Update pixel_pin and pixel_num to match your wiring if using
|
|
a different form of NeoPixels.
|
|
"""
|
|
import board
|
|
import neopixel
|
|
from adafruit_led_animation.animation.blink import Blink
|
|
from adafruit_led_animation.color import RED
|
|
|
|
# Update to match the pin connected to your NeoPixels
|
|
pixel_pin = board.D6
|
|
# Update to match the number of NeoPixels you have connected
|
|
pixel_num = 32
|
|
|
|
pixels = neopixel.NeoPixel(pixel_pin, pixel_num, brightness=0.5, auto_write=False)
|
|
|
|
blink = Blink(pixels, speed=0.5, color=RED)
|
|
|
|
while True:
|
|
blink.animate()
|