├── .github ├── dependabot.yml └── workflows │ └── actions.yaml ├── .gitignore ├── LICENSE ├── README.md ├── custom_components └── ventoptimization │ ├── __init__.py │ ├── config_flow.py │ ├── const.py │ ├── manifest.json │ ├── sensor.py │ └── translations │ ├── de.json │ ├── en.json │ └── sk.json ├── hacs.json └── requirements.txt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrGaertner/HA-vent-optimization/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrGaertner/HA-vent-optimization/HEAD/.github/workflows/actions.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrGaertner/HA-vent-optimization/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrGaertner/HA-vent-optimization/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrGaertner/HA-vent-optimization/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/ventoptimization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrGaertner/HA-vent-optimization/HEAD/custom_components/ventoptimization/__init__.py -------------------------------------------------------------------------------- /custom_components/ventoptimization/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrGaertner/HA-vent-optimization/HEAD/custom_components/ventoptimization/config_flow.py -------------------------------------------------------------------------------- /custom_components/ventoptimization/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrGaertner/HA-vent-optimization/HEAD/custom_components/ventoptimization/const.py -------------------------------------------------------------------------------- /custom_components/ventoptimization/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrGaertner/HA-vent-optimization/HEAD/custom_components/ventoptimization/manifest.json -------------------------------------------------------------------------------- /custom_components/ventoptimization/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrGaertner/HA-vent-optimization/HEAD/custom_components/ventoptimization/sensor.py -------------------------------------------------------------------------------- /custom_components/ventoptimization/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrGaertner/HA-vent-optimization/HEAD/custom_components/ventoptimization/translations/de.json -------------------------------------------------------------------------------- /custom_components/ventoptimization/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrGaertner/HA-vent-optimization/HEAD/custom_components/ventoptimization/translations/en.json -------------------------------------------------------------------------------- /custom_components/ventoptimization/translations/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrGaertner/HA-vent-optimization/HEAD/custom_components/ventoptimization/translations/sk.json -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrGaertner/HA-vent-optimization/HEAD/hacs.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | homeassistant==2025.9.3 2 | --------------------------------------------------------------------------------