Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.izone Namespace Reference

Namespaces

 climate
 
 config_flow
 
 const
 
 discovery
 

Functions

bool async_setup (HomeAssistant hass, ConfigType config)
 
bool async_setup_entry (HomeAssistant hass, ConfigEntry entry)
 
bool async_unload_entry (HomeAssistant hass, ConfigEntry entry)
 

Variables

 CONFIG_SCHEMA
 
list PLATFORMS = [Platform.CLIMATE]
 

Detailed Description

Platform for the iZone AC.

Function Documentation

◆ async_setup()

bool homeassistant.components.izone.async_setup ( HomeAssistant  hass,
ConfigType  config 
)
Register the iZone component config.

Definition at line 31 of file __init__.py.

◆ async_setup_entry()

bool homeassistant.components.izone.async_setup_entry ( HomeAssistant  hass,
ConfigEntry  entry 
)
Set up from a config entry.

Definition at line 56 of file __init__.py.

◆ async_unload_entry()

bool homeassistant.components.izone.async_unload_entry ( HomeAssistant  hass,
ConfigEntry  entry 
)
Unload the config entry and stop discovery process.

Definition at line 62 of file __init__.py.

Variable Documentation

◆ CONFIG_SCHEMA

homeassistant.components.izone.CONFIG_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  IZONE: vol.Schema(
4  {
5  vol.Optional(CONF_EXCLUDE, default=[]): vol.All(
6  cv.ensure_list, [cv.string]
7  )
8  }
9  )
10  },
11  extra=vol.ALLOW_EXTRA,
12 )

Definition at line 17 of file __init__.py.

◆ PLATFORMS

list homeassistant.components.izone.PLATFORMS = [Platform.CLIMATE]

Definition at line 15 of file __init__.py.