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

Classes

class  FlexitBacnetConfigFlow
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
int DEFAULT_DEVICE_ID = 2
 
 STEP_USER_DATA_SCHEMA
 

Detailed Description

Config flow for Flexit Nordic (BACnet) integration.

Variable Documentation

◆ _LOGGER

homeassistant.components.flexit_bacnet.config_flow._LOGGER = logging.getLogger(__name__)
private

Definition at line 18 of file config_flow.py.

◆ DEFAULT_DEVICE_ID

int homeassistant.components.flexit_bacnet.config_flow.DEFAULT_DEVICE_ID = 2

Definition at line 20 of file config_flow.py.

◆ STEP_USER_DATA_SCHEMA

homeassistant.components.flexit_bacnet.config_flow.STEP_USER_DATA_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_IP_ADDRESS): str,
4  vol.Required(CONF_DEVICE_ID, default=DEFAULT_DEVICE_ID): int,
5  }
6 )

Definition at line 22 of file config_flow.py.