├── .github └── workflows │ ├── codeql.yml │ ├── publish.yml │ └── validate.yml ├── .gitignore ├── LICENSE ├── README.md ├── custom_components └── wiser │ ├── __init__.py │ ├── binary_sensor.py │ ├── button.py │ ├── climate.py │ ├── config_flow.py │ ├── const.py │ ├── coordinator.py │ ├── cover.py │ ├── device_trigger.py │ ├── diagnostics.py │ ├── events.py │ ├── frontend │ ├── __init__.py │ ├── wiser-schedule-card.js │ └── wiser-zigbee-card.js │ ├── helpers.py │ ├── icons.json │ ├── light.py │ ├── manifest.json │ ├── number.py │ ├── schedules.py │ ├── select.py │ ├── sensor.py │ ├── services.py │ ├── services.yaml │ ├── strings.json │ ├── switch.py │ ├── translations │ ├── de.json │ ├── en.json │ └── fr.json │ └── websockets.py ├── hacs.json └── recipes ├── collection_of_sensors.md ├── custom_lovelace_card.md ├── interacting_with_custom_schedules.md ├── linking_3rd_party_sensors_to_wiser_heating.md ├── manage_temps.md ├── manage_temps_v2.md ├── renaming_history_graphs.md ├── turn_off_away_mode_by_datetime.md └── upload_schedules_on_change.md /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/wiser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/__init__.py -------------------------------------------------------------------------------- /custom_components/wiser/binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/binary_sensor.py -------------------------------------------------------------------------------- /custom_components/wiser/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/button.py -------------------------------------------------------------------------------- /custom_components/wiser/climate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/climate.py -------------------------------------------------------------------------------- /custom_components/wiser/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/config_flow.py -------------------------------------------------------------------------------- /custom_components/wiser/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/const.py -------------------------------------------------------------------------------- /custom_components/wiser/coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/coordinator.py -------------------------------------------------------------------------------- /custom_components/wiser/cover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/cover.py -------------------------------------------------------------------------------- /custom_components/wiser/device_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/device_trigger.py -------------------------------------------------------------------------------- /custom_components/wiser/diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/diagnostics.py -------------------------------------------------------------------------------- /custom_components/wiser/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/events.py -------------------------------------------------------------------------------- /custom_components/wiser/frontend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/frontend/__init__.py -------------------------------------------------------------------------------- /custom_components/wiser/frontend/wiser-schedule-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/frontend/wiser-schedule-card.js -------------------------------------------------------------------------------- /custom_components/wiser/frontend/wiser-zigbee-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/frontend/wiser-zigbee-card.js -------------------------------------------------------------------------------- /custom_components/wiser/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/helpers.py -------------------------------------------------------------------------------- /custom_components/wiser/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/icons.json -------------------------------------------------------------------------------- /custom_components/wiser/light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/light.py -------------------------------------------------------------------------------- /custom_components/wiser/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/manifest.json -------------------------------------------------------------------------------- /custom_components/wiser/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/number.py -------------------------------------------------------------------------------- /custom_components/wiser/schedules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/schedules.py -------------------------------------------------------------------------------- /custom_components/wiser/select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/select.py -------------------------------------------------------------------------------- /custom_components/wiser/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/sensor.py -------------------------------------------------------------------------------- /custom_components/wiser/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/services.py -------------------------------------------------------------------------------- /custom_components/wiser/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/services.yaml -------------------------------------------------------------------------------- /custom_components/wiser/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/strings.json -------------------------------------------------------------------------------- /custom_components/wiser/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/switch.py -------------------------------------------------------------------------------- /custom_components/wiser/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/translations/de.json -------------------------------------------------------------------------------- /custom_components/wiser/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/translations/en.json -------------------------------------------------------------------------------- /custom_components/wiser/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/translations/fr.json -------------------------------------------------------------------------------- /custom_components/wiser/websockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/custom_components/wiser/websockets.py -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/hacs.json -------------------------------------------------------------------------------- /recipes/collection_of_sensors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/recipes/collection_of_sensors.md -------------------------------------------------------------------------------- /recipes/custom_lovelace_card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/recipes/custom_lovelace_card.md -------------------------------------------------------------------------------- /recipes/interacting_with_custom_schedules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/recipes/interacting_with_custom_schedules.md -------------------------------------------------------------------------------- /recipes/linking_3rd_party_sensors_to_wiser_heating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/recipes/linking_3rd_party_sensors_to_wiser_heating.md -------------------------------------------------------------------------------- /recipes/manage_temps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/recipes/manage_temps.md -------------------------------------------------------------------------------- /recipes/manage_temps_v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/recipes/manage_temps_v2.md -------------------------------------------------------------------------------- /recipes/renaming_history_graphs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/recipes/renaming_history_graphs.md -------------------------------------------------------------------------------- /recipes/turn_off_away_mode_by_datetime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/recipes/turn_off_away_mode_by_datetime.md -------------------------------------------------------------------------------- /recipes/upload_schedules_on_change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantaga/wiserHomeAssistantPlatform/HEAD/recipes/upload_schedules_on_change.md --------------------------------------------------------------------------------