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

Classes

class  AuroraConfigFlow
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
dictionary OPTIONS_FLOW
 
 OPTIONS_SCHEMA
 

Detailed Description

Config flow for Aurora.

Variable Documentation

◆ _LOGGER

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

Definition at line 23 of file config_flow.py.

◆ OPTIONS_FLOW

dictionary homeassistant.components.aurora.config_flow.OPTIONS_FLOW
Initial value:
1 = {
2  "init": SchemaFlowFormStep(OPTIONS_SCHEMA),
3 }

Definition at line 32 of file config_flow.py.

◆ OPTIONS_SCHEMA

homeassistant.components.aurora.config_flow.OPTIONS_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_THRESHOLD, default=DEFAULT_THRESHOLD): vol.All(
4  vol.Coerce(int), vol.Range(min=0, max=100)
5  ),
6  }
7 )

Definition at line 25 of file config_flow.py.