zvecr f3f9b2b08c Dummy client config - more config 3 lat temu
..
__init__.py 819bf2eff8 Tidy up code/docstrings 4 lat temu
client.py 1dbb4c0f96 stash 3 lat temu
device.py 7ee5347485 Add eeprom init route 3 lat temu
pyproject.toml f3f9b2b08c Dummy client config - more config 3 lat temu
readme.md 819bf2eff8 Tidy up code/docstrings 4 lat temu
routes.py 986534ea95 Stub out lighting sets 3 lat temu
types.py 986534ea95 Stub out lighting sets 3 lat temu

readme.md

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