qmk_firmware/lib/python/xap_client/readme.md

19 lines
271 B
Markdown
Raw Normal View History

2022-07-18 23:46:08 +00:00
# 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