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

Classes

class  AirQConfigFlow
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
dictionary OPTIONS_FLOW
 
 STEP_USER_DATA_SCHEMA
 

Detailed Description

Config flow for air-Q integration.

Variable Documentation

◆ _LOGGER

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

Definition at line 24 of file config_flow.py.

◆ OPTIONS_FLOW

dictionary homeassistant.components.airq.config_flow.OPTIONS_FLOW
Initial value:
1 = {
2  "init": SchemaFlowFormStep(
3  schema=vol.Schema(
4  {
5  vol.Optional(CONF_RETURN_AVERAGE, default=True): BooleanSelector(),
6  vol.Optional(CONF_CLIP_NEGATIVE, default=True): BooleanSelector(),
7  }
8  )
9  ),
10 }

Definition at line 32 of file config_flow.py.

◆ STEP_USER_DATA_SCHEMA

homeassistant.components.airq.config_flow.STEP_USER_DATA_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_IP_ADDRESS): str,
4  vol.Required(CONF_PASSWORD): str,
5  }
6 )

Definition at line 26 of file config_flow.py.