Python SBUS client for Sais Burgess serial devices.
Stan Jansen b8761de679 Rename to tinysbus | il y a 4 ans | |
---|---|---|
tests | il y a 5 ans | |
tinysbus | il y a 4 ans | |
.gitignore | il y a 4 ans | |
README.md | il y a 4 ans | |
sbustest.py | il y a 4 ans | |
setup.py | il y a 4 ans |
tinysbus is a small Python package for interfacing with SAIA S-Bus devices.
import tinysbus
inst = tinysbus.Instrument(serial_port='/dev/ttyUSB0',
baurate=38400,
address=1)
# Read a single register:
inst.read_register(20)
# Read 4 registers, starting at number 20
inst.read_registers(20, 4)