This repository has been archived by the owner on Nov 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b5620b2
commit 89ff3bb
Showing
8 changed files
with
1,261 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# SPDX-FileCopyrightText: 2017 Scott Shawcroft for Adafruit Industries | ||
# | ||
# SPDX-License-Identifier: MIT | ||
|
||
""" | ||
`adafruit_hid` | ||
==================================================== | ||
This driver simulates USB HID devices. | ||
* Author(s): Scott Shawcroft, Dan Halbert | ||
Implementation Notes | ||
-------------------- | ||
**Software and Dependencies:** | ||
* Adafruit CircuitPython firmware for the supported boards: | ||
https://github.com/adafruit/circuitpython/releases | ||
""" | ||
|
||
# imports | ||
from __future__ import annotations | ||
import time | ||
|
||
try: | ||
import supervisor | ||
except ImportError: | ||
supervisor = None | ||
|
||
try: | ||
from typing import Sequence | ||
except ImportError: | ||
pass | ||
|
||
# usb_hid may not exist on some boards that still provide BLE or other HID devices. | ||
try: | ||
from usb_hid import Device | ||
except ImportError: | ||
Device = None | ||
|
||
__version__ = "6.1.1" | ||
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_HID.git" | ||
|
||
|
||
def find_device( | ||
devices: Sequence[object], | ||
*, | ||
usage_page: int, | ||
usage: int, | ||
timeout: int = None, | ||
) -> object: | ||
"""Search through the provided sequence of devices to find the one with the matching | ||
usage_page and usage. | ||
:param timeout: Time in seconds to wait for USB to become ready before timing out. | ||
Defaults to None to wait indefinitely. | ||
Ignored if device is not a `usb_hid.Device`; it might be BLE, for instance.""" | ||
|
||
if hasattr(devices, "send_report"): | ||
devices = [devices] # type: ignore | ||
device = None | ||
for dev in devices: | ||
if ( | ||
dev.usage_page == usage_page | ||
and dev.usage == usage | ||
and hasattr(dev, "send_report") | ||
): | ||
device = dev | ||
break | ||
if device is None: | ||
raise ValueError("Could not find matching HID device.") | ||
|
||
# Wait for USB to be connected only if this is a usb_hid.Device. | ||
if Device and isinstance(device, Device): | ||
if supervisor is None: | ||
# Blinka doesn't have supervisor (see issue Adafruit_Blinka#711), so wait | ||
# one second for USB to become ready | ||
time.sleep(1.0) | ||
elif timeout is None: | ||
# default behavior: wait indefinitely for USB to become ready | ||
while not supervisor.runtime.usb_connected: | ||
time.sleep(1.0) | ||
else: | ||
# wait up to timeout seconds for USB to become ready | ||
for _ in range(timeout): | ||
if supervisor.runtime.usb_connected: | ||
return device | ||
time.sleep(1.0) | ||
raise OSError("Failed to initialize HID device. Is USB connected?") | ||
|
||
return device |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
# SPDX-FileCopyrightText: 2018 Dan Halbert for Adafruit Industries | ||
# | ||
# SPDX-License-Identifier: MIT | ||
|
||
""" | ||
`adafruit_hid.consumer_control.ConsumerControl` | ||
==================================================== | ||
* Author(s): Dan Halbert | ||
""" | ||
|
||
import sys | ||
|
||
if sys.implementation.version[0] < 3: | ||
raise ImportError( | ||
"{0} is not supported in CircuitPython 2.x or lower".format(__name__) | ||
) | ||
|
||
# pylint: disable=wrong-import-position | ||
import struct | ||
from . import find_device | ||
|
||
try: | ||
from typing import Sequence | ||
import usb_hid | ||
except ImportError: | ||
pass | ||
|
||
|
||
class ConsumerControl: | ||
"""Send ConsumerControl code reports, used by multimedia keyboards, remote controls, etc.""" | ||
|
||
def __init__(self, devices: Sequence[usb_hid.Device], timeout: int = None) -> None: | ||
"""Create a ConsumerControl object that will send Consumer Control Device HID reports. | ||
:param timeout: Time in seconds to wait for USB to become ready before timing out. | ||
Defaults to None to wait indefinitely. | ||
Devices can be a sequence of devices that includes a Consumer Control device or a CC device | ||
itself. A device is any object that implements ``send_report()``, ``usage_page`` and | ||
``usage``. | ||
""" | ||
self._consumer_device = find_device( | ||
devices, usage_page=0x0C, usage=0x01, timeout=timeout | ||
) | ||
|
||
# Reuse this bytearray to send consumer reports. | ||
self._report = bytearray(2) | ||
|
||
def send(self, consumer_code: int) -> None: | ||
"""Send a report to do the specified consumer control action, | ||
and then stop the action (so it will not repeat). | ||
:param consumer_code: a 16-bit consumer control code. | ||
Examples:: | ||
from adafruit_hid.consumer_control_code import ConsumerControlCode | ||
# Raise volume. | ||
consumer_control.send(ConsumerControlCode.VOLUME_INCREMENT) | ||
# Advance to next track (song). | ||
consumer_control.send(ConsumerControlCode.SCAN_NEXT_TRACK) | ||
""" | ||
self.press(consumer_code) | ||
self.release() | ||
|
||
def press(self, consumer_code: int) -> None: | ||
"""Send a report to indicate that the given key has been pressed. | ||
Only one consumer control action can be pressed at a time, so any one | ||
that was previously pressed will be released. | ||
:param consumer_code: a 16-bit consumer control code. | ||
Examples:: | ||
from adafruit_hid.consumer_control_code import ConsumerControlCode | ||
# Raise volume for 0.5 seconds | ||
consumer_control.press(ConsumerControlCode.VOLUME_INCREMENT) | ||
time.sleep(0.5) | ||
consumer_control.release() | ||
""" | ||
struct.pack_into("<H", self._report, 0, consumer_code) | ||
self._consumer_device.send_report(self._report) | ||
|
||
def release(self) -> None: | ||
"""Send a report indicating that the consumer control key has been | ||
released. Only one consumer control key can be pressed at a time. | ||
Examples:: | ||
from adafruit_hid.consumer_control_code import ConsumerControlCode | ||
# Raise volume for 0.5 seconds | ||
consumer_control.press(ConsumerControlCode.VOLUME_INCREMENT) | ||
time.sleep(0.5) | ||
consumer_control.release() | ||
""" | ||
self._report[0] = self._report[1] = 0x0 | ||
self._consumer_device.send_report(self._report) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# SPDX-FileCopyrightText: 2018 Dan Halbert for Adafruit Industries | ||
# | ||
# SPDX-License-Identifier: MIT | ||
|
||
""" | ||
`adafruit_hid.consumer_control_code.ConsumerControlCode` | ||
======================================================== | ||
* Author(s): Dan Halbert | ||
""" | ||
|
||
|
||
class ConsumerControlCode: | ||
"""USB HID Consumer Control Device constants. | ||
This list includes a few common consumer control codes from | ||
https://www.usb.org/sites/default/files/hut1_21_0.pdf#page=118. | ||
""" | ||
|
||
# pylint: disable-msg=too-few-public-methods | ||
|
||
RECORD = 0xB2 | ||
"""Record""" | ||
FAST_FORWARD = 0xB3 | ||
"""Fast Forward""" | ||
REWIND = 0xB4 | ||
"""Rewind""" | ||
SCAN_NEXT_TRACK = 0xB5 | ||
"""Skip to next track""" | ||
SCAN_PREVIOUS_TRACK = 0xB6 | ||
"""Go back to previous track""" | ||
STOP = 0xB7 | ||
"""Stop""" | ||
EJECT = 0xB8 | ||
"""Eject""" | ||
PLAY_PAUSE = 0xCD | ||
"""Play/Pause toggle""" | ||
MUTE = 0xE2 | ||
"""Mute""" | ||
VOLUME_DECREMENT = 0xEA | ||
"""Decrease volume""" | ||
VOLUME_INCREMENT = 0xE9 | ||
"""Increase volume""" | ||
BRIGHTNESS_DECREMENT = 0x70 | ||
"""Decrease Brightness""" | ||
BRIGHTNESS_INCREMENT = 0x6F | ||
"""Increase Brightness""" |
Oops, something went wrong.