├── .dockerignore ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── docker-image.yml │ └── update-addon.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── SunGather ├── __init__.py ├── config-example.yaml ├── exports │ ├── __init__.py │ ├── console.py │ ├── hassio.py │ ├── influxdb.py │ ├── mqtt.py │ ├── pvoutput.py │ └── webserver.py ├── registers-sungrow.yaml ├── sungather.py └── version.py ├── docs ├── CNAME ├── _config.yml └── index.md ├── img ├── HomeAssistant-EnergyDashboardConfiguration.png └── HomeAssistant-SunGrow_Device.png ├── requirements.txt └── setup.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/update-addon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/.github/workflows/update-addon.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/README.md -------------------------------------------------------------------------------- /SunGather/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/SunGather/__init__.py -------------------------------------------------------------------------------- /SunGather/config-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/SunGather/config-example.yaml -------------------------------------------------------------------------------- /SunGather/exports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SunGather/exports/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/SunGather/exports/console.py -------------------------------------------------------------------------------- /SunGather/exports/hassio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/SunGather/exports/hassio.py -------------------------------------------------------------------------------- /SunGather/exports/influxdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/SunGather/exports/influxdb.py -------------------------------------------------------------------------------- /SunGather/exports/mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/SunGather/exports/mqtt.py -------------------------------------------------------------------------------- /SunGather/exports/pvoutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/SunGather/exports/pvoutput.py -------------------------------------------------------------------------------- /SunGather/exports/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/SunGather/exports/webserver.py -------------------------------------------------------------------------------- /SunGather/registers-sungrow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/SunGather/registers-sungrow.yaml -------------------------------------------------------------------------------- /SunGather/sungather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/SunGather/sungather.py -------------------------------------------------------------------------------- /SunGather/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.5.2' 2 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | sungather.net -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/docs/index.md -------------------------------------------------------------------------------- /img/HomeAssistant-EnergyDashboardConfiguration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/img/HomeAssistant-EnergyDashboardConfiguration.png -------------------------------------------------------------------------------- /img/HomeAssistant-SunGrow_Device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/img/HomeAssistant-SunGrow_Device.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bohdan-s/SunGather/HEAD/setup.py --------------------------------------------------------------------------------