Releases: adafruit/Adafruit_CircuitPython_HID
Update example file names
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
To use in CPython, pip install adafruit-circuitpython-hid
.
Read the docs for info on how to use it.
Add adafruit_hid.__version__
- Add standard
__version__
and__repo__
to__init__.py
, so we can identify the library version easily when it's frozen.
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
To use in CPython, pip install adafruit-circuitpython-hid
.
Read the docs for info on how to use it.
Mouse Update
- Fix negative mouse moves for CP 4.x and above.
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
To use in CPython, pip install adafruit-circuitpython-hid
.
Read the docs for info on how to use it.
Small fix
Update Travis Badge In Readme
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
To use in CPython, pip install adafruit-circuitpython-hid
.
Read the docs for info on how to use it.
Add ConsumerControlCode.MUTE
- Add
ConsumerControlCode.MUTE
.
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
To use in CPython, pip install adafruit-circuitpython-hid
.
Read the docs for info on how to use it.
Add Keycodes COMMAND, OPTION, and WINDOWS
Add Keycode
names that correspond to Mac and Windows keyboard labels, for more obvious use without having to refer to the documentation.
- Add
Keycode.WINDOWS
andKeycode.COMMAND
as aliases forKeycode.GUI
. - Add
Keycode.OPTION
as alias forKeycode.ALT
.
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
To use in CPython, pip install adafruit-circuitpython-hid
.
Read the docs for info on how to use it.
Now on PyPi!
- Added
setup.py
- Added PyPI release info to
.travis.yml
- Updated
requirements.txt
- Added a more comprehensive
.gitignore
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
To use in CPython, pip install adafruit-circuitpython-hid
.
Read the docs for info on how to use it.
Fix documentation build
Consumer control and gamepad documentation was missing from api.rst
.
To use in CircuitPython, download the .mpy file and copy it to the lib
folder on the CIRCUITPY
drive. Or, simply install the Adafruit CircuitPython bundle.
Read the docs for info on how to use it.
Handle 16-bit ConsumerControl codes
ConsumerControl was not passing 16-bit codes properly. Thanks @zeevro!