mirror of
https://github.com/qmk/qmk_firmware.git
synced 2026-08-04 08:21:08 -04:00
Tidy up code/docstrings
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user