Adafruit_CircuitPython_LED_Animation
Adafruit_CircuitPython_LED_Animation copied to clipboard
CircuitPython helper library for LED colors and animations
I'm trying to import the Pulse animation module, but getting error. Other animation modules work. I'm using circuitpython 8.2.9 on a raspi pico, and on v2.8.0 of the animation lib....
There are missing type annotations for some functions in this library. The `typing` module does not exist on CircuitPython devices so the import needs to be wrapped in try/except to...
Any idea how difficult it would be to make it easier to update the brightness of the animation once it has been created? I'm using a `RainbowComet` animation with a...
Ahoi! I'm just starting out with circuitpython and have to say thank you for those amazing libraries. Easy to use and setup and looks great. Now I'm hitting a wall....
A user commented on this: https://forums.adafruit.com/viewtopic.php?f=60&t=186732 This (simplified) example, after the first round, does the red and blue animations in random order. Each `Pulse` animation is correct, but, successive `Pulse`s...
`sparkle = Sparkle(pixels, speed=0.05, color=AMBER, num_sparkles=10)` This code should look like this (code and video taken from the adafruit guide): https://user-images.githubusercontent.com/101017273/220235696-7bfdf958-84ca-4982-ad35-4bb50bd12839.mp4 But it does actually look like this: https://user-images.githubusercontent.com/101017273/220235797-7f151fe9-4d0e-416b-8df5-ded4ece417f8.mp4 However,...
Recent issues like #108, which seem to be the result of API changes in a base class, might be mitigated if the less-used parameters for animation classes like `Comet` were...
it seems only animations derived from ColorCycle currently support the callback used by sequence when they complete. I added this code `def onComplete(sequence): print("completed sequence", animations.current_animation, sequence) animations.add_cycle_complete_receiver(onComplete) ` to...
The rainbow comet will be a single red color comet when tail_length is > 256 and step=0. I believe this may be caused by line 63 in the source: `...
After upgrading to the latest Circuit Python Bundle (circuitpython-bundle-5.x-mpy-20200621), I'm getting the following error with the **adafruit_led_animation** library on the Feather nRF52840 Express: _File "code.py", line 7, in TypeError: 'module'...