├── .devcontainer ├── README.md ├── config │ └── configuration.yaml ├── devcontainer.json └── hass.sh ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── renovate.json └── workflows │ ├── ci.yml │ ├── release.yaml │ └── validate.yaml ├── .gitignore ├── .python-version ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── custom_components └── climate_template │ ├── __init__.py │ ├── climate.py │ ├── manifest.json │ └── services.yaml ├── hacs.json ├── pyproject.toml └── uv.lock /.devcontainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/.devcontainer/README.md -------------------------------------------------------------------------------- /.devcontainer/config/configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/.devcontainer/config/configuration.yaml -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/hass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/.devcontainer/hass.sh -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: jcwillox 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/.github/workflows/validate.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/climate_template/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/custom_components/climate_template/__init__.py -------------------------------------------------------------------------------- /custom_components/climate_template/climate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/custom_components/climate_template/climate.py -------------------------------------------------------------------------------- /custom_components/climate_template/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/custom_components/climate_template/manifest.json -------------------------------------------------------------------------------- /custom_components/climate_template/services.yaml: -------------------------------------------------------------------------------- 1 | reload: 2 | -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/hacs.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwillox/hass-template-climate/HEAD/uv.lock --------------------------------------------------------------------------------