Files
qmk_firmware-mirror/lib/python/xap_client
2023-08-29 02:36:21 +01:00
..
2022-10-13 01:43:47 +01:00
2022-09-29 23:44:19 +01:00
2023-08-29 02:36:21 +01:00
2022-07-19 00:55:36 +01:00
2023-08-29 02:36:21 +01:00

XAP python3 bindings

Example

from xap_client import XAPClient

# List Available Devices
devices = XAPClient.devices()
selected = devices[0]

# Connect then run commands
with XAPClient().connect(selected) as dev:
    print(dev.version())

API

TODO