├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── Seplos3MQTTDocker ├── docker-compose.yaml ├── docs └── SEPLOS-3.0RS485BMS.Modbus.RTU.Protocol.pdf ├── img ├── rs485pinout.jpeg └── seplos_wiring.jpeg ├── requirements.txt ├── seplos3mqtt.ini └── seplos3mqtt.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferelarg/Seplos3MQTT/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferelarg/Seplos3MQTT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferelarg/Seplos3MQTT/HEAD/README.md -------------------------------------------------------------------------------- /Seplos3MQTTDocker: -------------------------------------------------------------------------------- 1 | Changes to dockerize proyect. 2 | -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferelarg/Seplos3MQTT/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/SEPLOS-3.0RS485BMS.Modbus.RTU.Protocol.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferelarg/Seplos3MQTT/HEAD/docs/SEPLOS-3.0RS485BMS.Modbus.RTU.Protocol.pdf -------------------------------------------------------------------------------- /img/rs485pinout.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferelarg/Seplos3MQTT/HEAD/img/rs485pinout.jpeg -------------------------------------------------------------------------------- /img/seplos_wiring.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferelarg/Seplos3MQTT/HEAD/img/seplos_wiring.jpeg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyserial 2 | paho-mqtt 3 | -------------------------------------------------------------------------------- /seplos3mqtt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferelarg/Seplos3MQTT/HEAD/seplos3mqtt.ini -------------------------------------------------------------------------------- /seplos3mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferelarg/Seplos3MQTT/HEAD/seplos3mqtt.py --------------------------------------------------------------------------------