Python SBUS client for Sais Burgess serial devices.

Stan Jansen b8761de679 Rename to tinysbus hace 3 años
tests 588662239e Initial version of sbus hace 4 años
tinysbus b8761de679 Rename to tinysbus hace 3 años
.gitignore b8761de679 Rename to tinysbus hace 3 años
README.md b8761de679 Rename to tinysbus hace 3 años
sbustest.py 379787d381 Updated version hace 3 años
setup.py b8761de679 Rename to tinysbus hace 3 años

README.md

Tiny S-BUS

tinysbus is a small Python package for interfacing with SAIA S-Bus devices.

Usage

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)