pamoja.field_io
Field I/O: The wires a gateway actually has: framed serial packets, an RS485 request and the reply it draws, a CAN frame, and the address a chip answers on.
Installing this distribution installs pamoja.serial, pamoja.modbus, pamoja.can, pamoja.gpio, and re-exports each under its
own name, so a name two of them share stays unambiguous.
1"""Field I/O: The wires a gateway actually has: framed serial packets, an RS485 request and the reply it draws, a CAN frame, and the address a chip answers on. 2 3Installing this distribution installs ``pamoja.serial``, ``pamoja.modbus``, ``pamoja.can``, ``pamoja.gpio``, and re-exports each under its 4own name, so a name two of them share stays unambiguous. 5""" 6 7from pamoja import serial, modbus, can, gpio 8 9__all__ = ["serial", "modbus", "can", "gpio"]