Skip to content

Cursor Control! #1

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 36 commits into from
Jun 26, 2019
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
3e063e1
initial working library commit. BMP cursor, boundingbox, movement, sp…
Jun 18, 2019
6963278
allow for dynamic scaling of the cursor bitmap using Group
Jun 18, 2019
0143154
cursor has a lot of related display data, pass in as a dictionaryso s…
Jun 18, 2019
08126f4
sub-group cursor group within the code's primary group
Jun 18, 2019
c55efc8
add hide/show cursor methods, ishidden property
Jun 18, 2019
9b600ea
append the group instead of inserting it at a fixed location, could c…
Jun 18, 2019
b41213f
dont move the cursor on x/y grid if its property is set to hidden
Jun 18, 2019
5f26109
pylinting
Jun 18, 2019
06cf336
autogenerate a cursor using bitmaps, make load_cursor_bitmap an optio…
Jun 18, 2019
64a2289
refactor is_hidden into hide as a setter/getter
Jun 18, 2019
62518fa
only scale if positive, bump cursor default speed, update example
Jun 19, 2019
41fc404
add dynamic boundingbox from display, remove loading a cursor bitmap
Jun 20, 2019
ad31b57
pylint!
Jun 20, 2019
cfb1c6f
add simpletest, remove buttontest
Jun 20, 2019
7539464
add advanced cursor+btns+txt demo example
Jun 20, 2019
034026e
remove dispio dep, display object is passed in, add code example
Jun 20, 2019
3b50809
update readme, update library, sphinx builds
Jun 20, 2019
08fce52
fresh cookiecutter
Jun 20, 2019
ba90767
add code with correct header
Jun 20, 2019
75486f5
pylint and sphinx pass
Jun 20, 2019
9032419
fixing requirements.txt
Jun 20, 2019
eb0cc44
fix wrong import order
Jun 20, 2019
f35ef16
add methods for ContextManager, cursor deinitialization and check
Jun 21, 2019
6bdcb60
adding a high-level cursor control management class
Jun 21, 2019
1bb7041
unify the init code for pybadge OR pygamer
Jun 21, 2019
9b4ca43
pylinted!
Jun 21, 2019
90c702a
add empty __init__.py file
Jun 21, 2019
b4f7c81
fixup docs
Jun 21, 2019
b81edf1
fix init
Jun 21, 2019
a671d9f
fix travis script
Jun 21, 2019
11af20e
fix import statement order
Jun 21, 2019
20225e7
drop adafruit_ from file name, already in an adafruit_ folder
Jun 21, 2019
2724b95
cursormanager has no knowledge of buttons, add property to return if …
Jun 25, 2019
6aafca1
add joystick handling for the pygamer
Jun 25, 2019
9791997
update cursorcontrol_btns_txt to dynamically resize btns/ui elements …
Jun 25, 2019
28a34db
update update() logic
Jun 26, 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
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
*.mpy
.idea
__pycache__
_build
*.pyc
.env
build*
bundles
*.DS_Store
.eggs
dist
**/*.egg-info
Loading