├── .gitignore ├── LICENSE ├── README.md ├── rd6006 ├── __init__.py └── rd6006.py ├── registers.md ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baldanos/rd6006/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baldanos/rd6006/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baldanos/rd6006/HEAD/README.md -------------------------------------------------------------------------------- /rd6006/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baldanos/rd6006/HEAD/rd6006/__init__.py -------------------------------------------------------------------------------- /rd6006/rd6006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baldanos/rd6006/HEAD/rd6006/rd6006.py -------------------------------------------------------------------------------- /registers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baldanos/rd6006/HEAD/registers.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyserial==3.4 2 | minimalmodbus==1.0.2 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baldanos/rd6006/HEAD/setup.py --------------------------------------------------------------------------------