-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add config flow, icons, translations et turn on/off support (#15)
* Add config flow, icons, translations et turn on/off support * Update translations
- Loading branch information
Showing
8 changed files
with
384 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,35 @@ | ||
"""Qubino wire pilot platform configuration.""" | ||
"""Qubino wire pilot component.""" | ||
|
||
from homeassistant.config_entries import ConfigEntry | ||
from homeassistant.const import Platform | ||
from homeassistant.core import HomeAssistant | ||
from homeassistant.helpers.device import ( | ||
async_remove_stale_devices_links_keep_entity_device, | ||
) | ||
|
||
CONF_HEATER = "heater" | ||
DOMAIN = "qubino_wire_pilot" | ||
PLATFORMS = [Platform.CLIMATE] | ||
|
||
|
||
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: | ||
"""Set up from a config entry.""" | ||
|
||
async_remove_stale_devices_links_keep_entity_device( | ||
hass, | ||
entry.entry_id, | ||
entry.options[CONF_HEATER], | ||
) | ||
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS) | ||
entry.async_on_unload(entry.add_update_listener(config_entry_update_listener)) | ||
return True | ||
|
||
|
||
async def config_entry_update_listener(hass: HomeAssistant, entry: ConfigEntry) -> None: | ||
"""Update listener, called when the config entry options are changed.""" | ||
await hass.config_entries.async_reload(entry.entry_id) | ||
|
||
|
||
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: | ||
"""Unload a config entry.""" | ||
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.