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

find_mouse_endpoint() function and convert to ruff. #3

Merged
merged 2 commits into from
Mar 28, 2025

Conversation

FoamyGuy
Copy link
Contributor

This allows user code to find and read from a mouse without having to hardcode the VID/PID, interface index, and endpoint address.

Example usage of the new function:

mouse_interface_index, mouse_endpoint_address = None, None
mouse = None

for device in usb.core.find(find_all=True):
    mouse_interface_index, mouse_endpoint_address = adafruit_usb_host_descriptors.find_mouse_endpoint(device)
    if mouse_interface_index is not None and mouse_endpoint_address is not None:
        mouse = device
        print(f"mouse interface: {mouse_interface_index} endpoint_address: {hex(mouse_endpoint_address)}")
        break

if mouse is not None:
    # detach the kernel driver if needed
    if mouse.is_kernel_driver_active(mouse_interface_index):
        mouse.detach_kernel_driver(mouse_interface_index)

    # set configuration on the mouse so we can use it
    mouse.set_configuration()

mouse_buf = array.array("b", [0] * 4)
while True:
    if mouse is not None:
    try:
        count = mouse.read(mouse_endpoint_address, mouse_buf, timeout=10)
        print(mouse_buf)
    except usb.core.USBTimeoutError:
        # skip the rest of the loop if there is no data
        continue

@FoamyGuy FoamyGuy requested a review from a team March 23, 2025 19:45
Copy link
Member

@tannewt tannewt left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! One question.

Co-authored-by: Scott Shawcroft <scott@tannewt.org>
Copy link
Member

@tannewt tannewt left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you!

@tannewt tannewt merged commit 7bf4348 into adafruit:main Mar 28, 2025
1 check passed
adafruit-adabot added a commit to adafruit/Adafruit_CircuitPython_Bundle that referenced this pull request Apr 3, 2025
Updating https://github.com/adafruit/Adafruit_CircuitPython_INA228 to 1.0.1 from 1.0.0:
  > Update adafruit_ina228.py

Updating https://github.com/adafruit/Adafruit_CircuitPython_SSD1305 to 1.4.0 from 1.3.21:
  > Merge pull request adafruit/Adafruit_CircuitPython_SSD1305#16 from mikeysklar/ssd1305-white-module-col-offset

Updating https://github.com/adafruit/Adafruit_CircuitPython_TLV320 to 1.0.0 from 51c14aa:
  < Update README.rst

Updating https://github.com/adafruit/Adafruit_CircuitPython_Bitmap_Font to 2.3.0 from 2.2.0:
  > Merge pull request adafruit/Adafruit_CircuitPython_Bitmap_Font#70 from tannewt/cmap03

Updating https://github.com/adafruit/Adafruit_CircuitPython_Display_Text to 3.2.4 from 3.2.3:
  > Merge pull request adafruit/Adafruit_CircuitPython_Display_Text#219 from FoamyGuy/use_ruff

Updating https://github.com/adafruit/Adafruit_CircuitPython_JSON_Stream to 0.9.0 from 0.8.6:
  > Merge pull request adafruit/Adafruit_CircuitPython_JSON_Stream#9 from Neradoc/iterator-on-objects
  > Merge pull request adafruit/Adafruit_CircuitPython_JSON_Stream#8 from Neradoc/fix-string-in-string

Updating https://github.com/adafruit/Adafruit_CircuitPython_USB_Host_Descriptors to 0.2.1 from 0.1.4:
  > Merge pull request adafruit/Adafruit_CircuitPython_USB_Host_Descriptors#4 from FoamyGuy/two_mice_example
  > Merge pull request adafruit/Adafruit_CircuitPython_USB_Host_Descriptors#3 from FoamyGuy/find_mouse_helper

Updating https://github.com/adafruit/Adafruit_CircuitPython_Bundle/circuitpython_library_list.md to NA from NA:
  > Added the following libraries: Adafruit_CircuitPython_TLV320
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants