Skip to content

Add more animations, add AggregatePixels helper. #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 47 commits into from
May 15, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
faca5bc
Add more animations, add AggregatePixels.
rhooper Dec 14, 2019
2a67891
fix lint
rhooper Dec 16, 2019
3297a7f
make AggregatePixels be able to be individual pixels
rhooper Dec 16, 2019
f1b1fc7
fixes to individual pixel aggregates
rhooper Dec 16, 2019
437c447
Add more sparkles
rhooper Dec 16, 2019
1753ee3
allow switching by name, fix random order
rhooper Dec 16, 2019
f3a6eab
Add SubsetPixels that lets you manipulate a subset of the pixels as i…
rhooper Dec 16, 2019
1ee581d
more features to make coordinating animations easier
rhooper Dec 21, 2019
bad8def
fix for dotstars
rhooper Jan 1, 2020
ed7abab
update cookiecutter and address lint
rhooper Jan 4, 2020
333a6c7
lint
rhooper Jan 4, 2020
a3d95a6
lint
rhooper Jan 4, 2020
c3670cb
make sphinx happy (thanks @kattni!)
rhooper Jan 4, 2020
fe005f4
add docs and examples
rhooper Jan 4, 2020
15c8ae9
move docs above init
rhooper Jan 4, 2020
e797092
Move the pulse generator out to a helper so it can be reused
rhooper Feb 1, 2020
ff5f0cf
Updating files to match master.
kattni May 7, 2020
043175a
Bring it into the darkness.
kattni May 7, 2020
d66b347
Merge branch 'master' into more-magic
kattni May 7, 2020
ee0ee6e
Further into the darkness.
kattni May 7, 2020
95d273c
Fix import.
kattni May 7, 2020
8bfa801
Reblackening.
kattni May 7, 2020
facd447
Fix import, add licenses, docstrings.
kattni May 8, 2020
21ca6b9
Hello darkness my old friend.
kattni May 8, 2020
9398874
Make RainbowChase work, and make Chase code easier to work with via g…
rhooper May 11, 2020
3277e4d
fix lint
rhooper May 11, 2020
cd7783f
add rainbowcomet
rhooper May 11, 2020
6f17a43
Update Aggregate and Subset naming.
kattni May 12, 2020
b8fe94a
Add NotifiedAnimationSequence, remove color from Rainbow*
kattni May 13, 2020
d66c999
Refactor cycle completion notification system
rhooper May 13, 2020
12cceda
fix auto advance
rhooper May 13, 2020
00133ed
refactor group and sequence notifications, add the ability to loop mu…
rhooper May 13, 2020
4399fb4
bugfixes
rhooper May 13, 2020
a81ee24
fix a bug
rhooper May 14, 2020
ab085fd
fix various bugs, duplicate show calls, and other fixes
rhooper May 14, 2020
5bd6bfe
Update simpletest to new API.
kattni May 14, 2020
cf4a1fe
Make generics to help with vertical and horizontal lines.
rhooper May 14, 2020
496e46c
reformat code to comply with black
rhooper May 14, 2020
6dd47d5
Appease the Sphinx.
kattni May 14, 2020
ee35ea8
fix error related to cycle_complete_supported in some animations
rhooper May 14, 2020
ed4bbf9
Examples and docs.
kattni May 15, 2020
98da8ab
Import fix.
kattni May 15, 2020
4c44276
split up into more files to make it possible to use some animations o…
rhooper May 15, 2020
0dc7599
remove pixelmap add
rhooper May 15, 2020
b0206e9
Still needs docstrings in new files.
kattni May 15, 2020
f29856c
Update docstrings and docs.
kattni May 15, 2020
fa69348
Black again.
kattni May 15, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
lint
  • Loading branch information
rhooper committed Feb 1, 2020
commit 333a6c7536cd82a83ebbcc59e9427437c85d0e12
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ Usage Example
.. code-block:: python

from adafruit_led_animation.animation import Comet, AnimationSequence, Chase
from adafruit_led_animation.color import PURPLE, WHITE
import neopixel
import board

Expand Down
1 change: 1 addition & 0 deletions examples/led_animation_simpletest.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Example animation sequence.
"""
from adafruit_led_animation.animation import Comet, AnimationSequence, Chase
from adafruit_led_animation.color import PURPLE, WHITE
import neopixel
import board

Expand Down