├── .github └── workflows │ ├── build-image.yml │ ├── ci.yml │ └── merge-manifests.yml ├── .gitignore ├── .vscode └── launch.json ├── CHANGELOG.md ├── Dockerfile ├── HoymilesZeroExport.py ├── HoymilesZeroExport_Config.ini ├── LICENSE ├── README.md ├── __pycache__ └── config_provider.cpython-311.pyc ├── config_provider.py ├── install.sh ├── requirements.txt ├── res ├── HA_Comparison_1.png └── HA_Comparison_2.png ├── restart.sh ├── scripts ├── GetPowerFromDDSU666.sh ├── GetPowerFromMSunPV_Powermeter.sh ├── GetPowerFromMSunPV_SolarPower.sh └── GetPowerFromVictronMultiplus.sh ├── uninstall_service.sh └── update.sh /.github/workflows/build-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/.github/workflows/build-image.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/merge-manifests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/.github/workflows/merge-manifests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | HoymilesZeroExport_Config_Override.ini -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/Dockerfile -------------------------------------------------------------------------------- /HoymilesZeroExport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/HoymilesZeroExport.py -------------------------------------------------------------------------------- /HoymilesZeroExport_Config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/HoymilesZeroExport_Config.ini -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/config_provider.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/__pycache__/config_provider.cpython-311.pyc -------------------------------------------------------------------------------- /config_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/config_provider.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/install.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/requirements.txt -------------------------------------------------------------------------------- /res/HA_Comparison_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/res/HA_Comparison_1.png -------------------------------------------------------------------------------- /res/HA_Comparison_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/res/HA_Comparison_2.png -------------------------------------------------------------------------------- /restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/restart.sh -------------------------------------------------------------------------------- /scripts/GetPowerFromDDSU666.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/scripts/GetPowerFromDDSU666.sh -------------------------------------------------------------------------------- /scripts/GetPowerFromMSunPV_Powermeter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/scripts/GetPowerFromMSunPV_Powermeter.sh -------------------------------------------------------------------------------- /scripts/GetPowerFromMSunPV_SolarPower.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/scripts/GetPowerFromMSunPV_SolarPower.sh -------------------------------------------------------------------------------- /scripts/GetPowerFromVictronMultiplus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/scripts/GetPowerFromVictronMultiplus.sh -------------------------------------------------------------------------------- /uninstall_service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/uninstall_service.sh -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reserve85/HoymilesZeroExport/HEAD/update.sh --------------------------------------------------------------------------------