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

Namespaces

 alarm_control_panel
 
 binary_sensor
 
 button
 
 climate
 
 config_flow
 
 const
 
 cover
 
 entity
 
 errors
 
 hap
 
 helpers
 
 light
 
 lock
 
 sensor
 
 services
 
 switch
 
 weather
 

Functions

def _async_remove_obsolete_entities (HomeAssistant hass, ConfigEntry entry, HomematicipHAP hap)
 
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
 

Detailed Description

Support for HomematicIP Cloud devices.

Function Documentation

◆ _async_remove_obsolete_entities()

def homeassistant.components.homematicip_cloud._async_remove_obsolete_entities ( HomeAssistant  hass,
ConfigEntry  entry,
HomematicipHAP   hap 
)
private
Remove obsolete entities from entity registry.

Definition at line 124 of file __init__.py.

◆ async_setup()

bool homeassistant.components.homematicip_cloud.async_setup ( HomeAssistant  hass,
ConfigType  config 
)
Set up the HomematicIP Cloud component.

Definition at line 46 of file __init__.py.

◆ async_setup_entry()

bool homeassistant.components.homematicip_cloud.async_setup_entry ( HomeAssistant  hass,
ConfigEntry  entry 
)
Set up an access point from a config entry.

Definition at line 72 of file __init__.py.

◆ async_unload_entry()

bool homeassistant.components.homematicip_cloud.async_unload_entry ( HomeAssistant  hass,
ConfigEntry  entry 
)
Unload a config entry.

Definition at line 113 of file __init__.py.

Variable Documentation

◆ CONFIG_SCHEMA

homeassistant.components.homematicip_cloud.CONFIG_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Optional(DOMAIN, default=[]): vol.All(
4  cv.ensure_list,
5  [
6  vol.Schema(
7  {
8  vol.Optional(CONF_NAME, default=""): vol.Any(cv.string),
9  vol.Required(CONF_ACCESSPOINT): cv.string,
10  vol.Required(CONF_AUTHTOKEN): cv.string,
11  }
12  )
13  ],
14  )
15  },
16  extra=vol.ALLOW_EXTRA,
17 )

Definition at line 27 of file __init__.py.