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

Namespaces

 binary_sensor
 
 climate
 
 config_flow
 
 const
 
 coordinator
 
 entity
 
 errors
 
 sensor
 
 water_heater
 

Functions

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

Variables

 CONFIG_SCHEMA
 
 InComfortConfigEntry
 
string INTEGRATION_TITLE = "Intergas InComfort/Intouch Lan2RF gateway"
 
tuple PLATFORMS
 

Detailed Description

Support for an Intergas boiler via an InComfort/Intouch Lan2RF gateway.

Function Documentation

◆ _async_import()

None homeassistant.components.incomfort._async_import ( HomeAssistant  hass,
ConfigType  config 
)
private
Import config entry from configuration.yaml.

Definition at line 46 of file __init__.py.

◆ async_setup()

bool homeassistant.components.incomfort.async_setup ( HomeAssistant  hass,
ConfigType  hass_config 
)
Create an Intergas InComfort/Intouch system.

Definition at line 86 of file __init__.py.

◆ async_setup_entry()

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

Definition at line 93 of file __init__.py.

◆ async_unload_entry()

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

Definition at line 119 of file __init__.py.

Variable Documentation

◆ CONFIG_SCHEMA

homeassistant.components.incomfort.CONFIG_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  DOMAIN: vol.Schema(
4  {
5  vol.Required(CONF_HOST): cv.string,
6  vol.Inclusive(CONF_USERNAME, "credentials"): cv.string,
7  vol.Inclusive(CONF_PASSWORD, "credentials"): cv.string,
8  }
9  )
10  },
11  extra=vol.ALLOW_EXTRA,
12 )

Definition at line 21 of file __init__.py.

◆ InComfortConfigEntry

homeassistant.components.incomfort.InComfortConfigEntry

Definition at line 43 of file __init__.py.

◆ INTEGRATION_TITLE

string homeassistant.components.incomfort.INTEGRATION_TITLE = "Intergas InComfort/Intouch Lan2RF gateway"

Definition at line 41 of file __init__.py.

◆ PLATFORMS

tuple homeassistant.components.incomfort.PLATFORMS
Initial value:
1 = (
2  Platform.WATER_HEATER,
3  Platform.BINARY_SENSOR,
4  Platform.SENSOR,
5  Platform.CLIMATE,
6 )

Definition at line 34 of file __init__.py.