├── .gitignore ├── ComfoNetCan.py ├── README.md ├── mapping2.py ├── old ├── build.py ├── install.sh ├── setup.py └── src │ ├── main │ ├── python │ │ ├── pyserial.py │ │ └── zcan │ │ │ ├── __init__.py │ │ │ ├── can.py │ │ │ ├── cli.py │ │ │ ├── exception.py │ │ │ ├── influxdb_writer.py │ │ │ ├── main.py │ │ │ ├── mapping.py │ │ │ ├── queue.py │ │ │ └── util.py │ └── scripts │ │ └── zcan │ └── unittest │ └── python │ └── can_tests.py ├── sendmsg.py ├── testcan.py └── zcanbridge.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/.gitignore -------------------------------------------------------------------------------- /ComfoNetCan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/ComfoNetCan.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/README.md -------------------------------------------------------------------------------- /mapping2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/mapping2.py -------------------------------------------------------------------------------- /old/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/old/build.py -------------------------------------------------------------------------------- /old/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/old/install.sh -------------------------------------------------------------------------------- /old/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/old/setup.py -------------------------------------------------------------------------------- /old/src/main/python/pyserial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/old/src/main/python/pyserial.py -------------------------------------------------------------------------------- /old/src/main/python/zcan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/old/src/main/python/zcan/__init__.py -------------------------------------------------------------------------------- /old/src/main/python/zcan/can.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/old/src/main/python/zcan/can.py -------------------------------------------------------------------------------- /old/src/main/python/zcan/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/old/src/main/python/zcan/cli.py -------------------------------------------------------------------------------- /old/src/main/python/zcan/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/old/src/main/python/zcan/exception.py -------------------------------------------------------------------------------- /old/src/main/python/zcan/influxdb_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/old/src/main/python/zcan/influxdb_writer.py -------------------------------------------------------------------------------- /old/src/main/python/zcan/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/old/src/main/python/zcan/main.py -------------------------------------------------------------------------------- /old/src/main/python/zcan/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/old/src/main/python/zcan/mapping.py -------------------------------------------------------------------------------- /old/src/main/python/zcan/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/old/src/main/python/zcan/queue.py -------------------------------------------------------------------------------- /old/src/main/python/zcan/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/old/src/main/python/zcan/util.py -------------------------------------------------------------------------------- /old/src/main/scripts/zcan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/old/src/main/scripts/zcan -------------------------------------------------------------------------------- /old/src/unittest/python/can_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/old/src/unittest/python/can_tests.py -------------------------------------------------------------------------------- /sendmsg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/sendmsg.py -------------------------------------------------------------------------------- /testcan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/testcan.py -------------------------------------------------------------------------------- /zcanbridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djwlindenaar/zcan/HEAD/zcanbridge.py --------------------------------------------------------------------------------