qmk_firmware/lib/python/xap_client/readme.md
2022-07-19 00:55:36 +01:00

19 lines
271 B
Markdown

# XAP python3 bindings
## Example
```python
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