├── .github └── stale.yaml ├── .gitignore ├── CHANGELOG.md ├── DOCS.md ├── Dockerfile ├── LICENSE ├── ModbusTCP.py ├── README.md ├── SunGather ├── __init__.py ├── config-example.yaml ├── exports │ ├── __init__.py │ ├── console.py │ ├── influxdb.py │ ├── jsonserver.py │ ├── mqtt.py │ ├── pvoutput.py │ └── webserver.py ├── registers-sma.yaml ├── registers-sungrow.yaml ├── sungather.py └── version.py ├── apparmor.txt ├── config.json ├── config.yaml ├── config_generator.py ├── icon.png ├── images └── diagram.gif ├── logo.png ├── requirements.txt └── run.sh /.github/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/.github/stale.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/DOCS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/LICENSE -------------------------------------------------------------------------------- /ModbusTCP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/ModbusTCP.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/README.md -------------------------------------------------------------------------------- /SunGather/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/SunGather/__init__.py -------------------------------------------------------------------------------- /SunGather/config-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/SunGather/config-example.yaml -------------------------------------------------------------------------------- /SunGather/exports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SunGather/exports/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/SunGather/exports/console.py -------------------------------------------------------------------------------- /SunGather/exports/influxdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/SunGather/exports/influxdb.py -------------------------------------------------------------------------------- /SunGather/exports/jsonserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/SunGather/exports/jsonserver.py -------------------------------------------------------------------------------- /SunGather/exports/mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/SunGather/exports/mqtt.py -------------------------------------------------------------------------------- /SunGather/exports/pvoutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/SunGather/exports/pvoutput.py -------------------------------------------------------------------------------- /SunGather/exports/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/SunGather/exports/webserver.py -------------------------------------------------------------------------------- /SunGather/registers-sma.yaml: -------------------------------------------------------------------------------- 1 | version: 0.0.1 2 | vendor: SMA 3 | -------------------------------------------------------------------------------- /SunGather/registers-sungrow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/SunGather/registers-sungrow.yaml -------------------------------------------------------------------------------- /SunGather/sungather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/SunGather/sungather.py -------------------------------------------------------------------------------- /SunGather/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.3.8' -------------------------------------------------------------------------------- /apparmor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/apparmor.txt -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/config.json -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/config.yaml -------------------------------------------------------------------------------- /config_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/config_generator.py -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/icon.png -------------------------------------------------------------------------------- /images/diagram.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/images/diagram.gif -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/logo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatterVN/ModbusTCP2MQTT/HEAD/run.sh --------------------------------------------------------------------------------