Skip to content
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

Add animations. #8

Merged
merged 52 commits into from
Dec 11, 2019
Merged
Show file tree
Hide file tree
Changes from 47 commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
7454f67
Folder rename, add three animations.
kattni Nov 29, 2019
a6cd418
Documented simpletest.
kattni Nov 29, 2019
18d3897
Linting.
kattni Nov 29, 2019
3c5400f
Refactor to remove common code, support integer colours
rhooper Nov 29, 2019
bcf68c0
add a generic color cycler and move blink to use it, and add a solid …
rhooper Nov 29, 2019
b31bc3d
don't use self.color
rhooper Nov 29, 2019
4d9503d
Fix lint
rhooper Nov 30, 2019
140b644
tidy up but maybe not fix yet?
rhooper Nov 30, 2019
3a03bc1
Docs updates.
kattni Nov 30, 2019
245089b
fix timing issue
rhooper Nov 30, 2019
487bf35
switch to monotonic_ns to handle long uptimes
rhooper Nov 30, 2019
48fa1f4
Removing speed arg from Solid color
kattni Dec 2, 2019
ce5a72b
fix? int to rgb
rhooper Dec 3, 2019
1b02cd8
fix init bug and add a dummypixels to test with
rhooper Dec 3, 2019
0ae0359
Add docs, default ColorCycle, RAINBOW.
kattni Dec 3, 2019
41dcfdb
Fix Solid.
kattni Dec 3, 2019
1a673ec
Update docstring in example.
kattni Dec 3, 2019
cc0fb4c
fix lint
rhooper Dec 3, 2019
86678e3
add animation sequences and groups
rhooper Dec 3, 2019
531065f
Fix groups and add sync ability
rhooper Dec 3, 2019
9960c11
fix some bugs
rhooper Dec 4, 2019
9f0d38a
make comets reversible
rhooper Dec 4, 2019
1de9ad0
make it bounceable
rhooper Dec 4, 2019
b09ed37
make it ready for kattni to make it beautiful
rhooper Dec 4, 2019
6f5a2ca
More docs.
kattni Dec 5, 2019
a3e3b75
add more features, fix auto advance.
rhooper Dec 5, 2019
81a3174
debounce pause/resume for sequences and ensure the pause continues wh…
rhooper Dec 5, 2019
9010299
Fill fix, more docs.
kattni Dec 6, 2019
47f1e88
Sphinx.
kattni Dec 6, 2019
eccb2fc
Update travis.yml for directory rename
kattni Dec 6, 2019
397c723
fix lint
rhooper Dec 6, 2019
969d48d
add docs
rhooper Dec 6, 2019
9fd8472
return animation result
rhooper Dec 9, 2019
b059310
return animation result
rhooper Dec 9, 2019
71cc6f1
Add Pulse animation.
rhooper Dec 9, 2019
6f522ac
add docs
rhooper Dec 9, 2019
2db4899
add chase
rhooper Dec 9, 2019
4621212
fix chase
rhooper Dec 9, 2019
7ac5968
fix reverse flag
rhooper Dec 9, 2019
9626ad4
add a way to control the color of each item in the chase
rhooper Dec 9, 2019
d5494c2
fix lint
rhooper Dec 9, 2019
072aad6
fix chase bugs
rhooper Dec 9, 2019
17faa95
use a sine wave and time based positioning
rhooper Dec 9, 2019
6c51625
Merge pull request #1 from rhooper/more-anims
kattni Dec 10, 2019
0f8f539
fix a bug
rhooper Dec 10, 2019
1ac6f67
make it fit 100 chars
rhooper Dec 10, 2019
ea69347
code review changes
rhooper Dec 10, 2019
8afcbcf
switch from freeze/resume to paused property
rhooper Dec 10, 2019
f6da086
Revert "switch from freeze/resume to paused property"
rhooper Dec 10, 2019
0d92928
address some code review concerns
rhooper Dec 10, 2019
eb24e61
remove use of sin from pulse
rhooper Dec 10, 2019
4d00304
remove unnecessary pass
rhooper Dec 10, 2019
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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ install:
- pip install pylint circuitpython-build-tools Sphinx sphinx-rtd-theme

script:
- pylint led_animation/*.py
- pylint adafruit_led_animation/*.py
- ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name,bad-whitespace examples/*.py)
- circuitpython-build-bundles --filename_prefix circuitpython-led_animation --library_location .
- cd docs && sphinx-build -E -W -b html . _build/html
File renamed without changes.
Loading