├── .github └── workflows │ └── validate.yml ├── .gitignore ├── LICENSE ├── README.md ├── TODO.md ├── custom_components └── grott │ ├── __init__.py │ ├── config_flow.py │ ├── const.py │ ├── manifest.json │ ├── sensor.py │ ├── sensors │ ├── __init__.py │ ├── sensors_calculated.py │ └── sensors_mqtt.py │ ├── strings.json │ └── translations │ ├── bg.json │ └── en.json ├── diagrams └── growatt-grott-diagrams.drawio ├── docs ├── FAQ.md ├── info │ └── grott.md ├── prerequisites.md └── setup │ ├── datalogger.md │ ├── docker-compose-guide.md │ ├── grott.md │ ├── homeassistant-mqtt-broker.md │ └── mqtt.md ├── examples ├── docker-compose │ ├── docker-compose.yml │ ├── grott │ │ └── config │ │ │ └── grott.ini │ └── mosquitto │ │ └── config │ │ └── mosquitto.conf └── templates │ └── template_configuration.yaml ├── hacs.json └── info.md /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/TODO.md -------------------------------------------------------------------------------- /custom_components/grott/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/custom_components/grott/__init__.py -------------------------------------------------------------------------------- /custom_components/grott/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/custom_components/grott/config_flow.py -------------------------------------------------------------------------------- /custom_components/grott/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/custom_components/grott/const.py -------------------------------------------------------------------------------- /custom_components/grott/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/custom_components/grott/manifest.json -------------------------------------------------------------------------------- /custom_components/grott/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/custom_components/grott/sensor.py -------------------------------------------------------------------------------- /custom_components/grott/sensors/__init__.py: -------------------------------------------------------------------------------- 1 | """Sensor types for Grott supported systems.""" 2 | -------------------------------------------------------------------------------- /custom_components/grott/sensors/sensors_calculated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/custom_components/grott/sensors/sensors_calculated.py -------------------------------------------------------------------------------- /custom_components/grott/sensors/sensors_mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/custom_components/grott/sensors/sensors_mqtt.py -------------------------------------------------------------------------------- /custom_components/grott/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/custom_components/grott/strings.json -------------------------------------------------------------------------------- /custom_components/grott/translations/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/custom_components/grott/translations/bg.json -------------------------------------------------------------------------------- /custom_components/grott/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/custom_components/grott/translations/en.json -------------------------------------------------------------------------------- /diagrams/growatt-grott-diagrams.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/diagrams/growatt-grott-diagrams.drawio -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/info/grott.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/docs/info/grott.md -------------------------------------------------------------------------------- /docs/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/docs/prerequisites.md -------------------------------------------------------------------------------- /docs/setup/datalogger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/docs/setup/datalogger.md -------------------------------------------------------------------------------- /docs/setup/docker-compose-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/docs/setup/docker-compose-guide.md -------------------------------------------------------------------------------- /docs/setup/grott.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/docs/setup/grott.md -------------------------------------------------------------------------------- /docs/setup/homeassistant-mqtt-broker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/docs/setup/homeassistant-mqtt-broker.md -------------------------------------------------------------------------------- /docs/setup/mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/docs/setup/mqtt.md -------------------------------------------------------------------------------- /examples/docker-compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/examples/docker-compose/docker-compose.yml -------------------------------------------------------------------------------- /examples/docker-compose/grott/config/grott.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/examples/docker-compose/grott/config/grott.ini -------------------------------------------------------------------------------- /examples/docker-compose/mosquitto/config/mosquitto.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/examples/docker-compose/mosquitto/config/mosquitto.conf -------------------------------------------------------------------------------- /examples/templates/template_configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/examples/templates/template_configuration.yaml -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/hacs.json -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muppet3000/homeassistant-grott/HEAD/info.md --------------------------------------------------------------------------------