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

Classes

class  InComfortConfigFlow
 

Functions

dict[str, str]|None async_try_connect_gateway (HomeAssistant hass, dict[str, Any] config)
 

Variables

 CONFIG_SCHEMA
 
string TITLE = "Intergas InComfort/Intouch Lan2RF gateway"
 

Detailed Description

Config flow support for Intergas InComfort integration.

Function Documentation

◆ async_try_connect_gateway()

dict[str, str] | None homeassistant.components.incomfort.config_flow.async_try_connect_gateway ( HomeAssistant  hass,
dict[str, Any]   config 
)
Try to connect to the Lan2RF gateway.

Definition at line 43 of file config_flow.py.

Variable Documentation

◆ CONFIG_SCHEMA

homeassistant.components.incomfort.config_flow.CONFIG_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_HOST): TextSelector(
4  TextSelectorConfig(type=TextSelectorType.TEXT)
5  ),
6  vol.Optional(CONF_USERNAME): TextSelector(
7  TextSelectorConfig(type=TextSelectorType.TEXT, autocomplete="admin")
8  ),
9  vol.Optional(CONF_PASSWORD): TextSelector(
10  TextSelectorConfig(type=TextSelectorType.PASSWORD)
11  ),
12  }
13 )

Definition at line 23 of file config_flow.py.

◆ TITLE

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

Definition at line 21 of file config_flow.py.