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

Classes

class  AquaCellConfigFlow
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
 DATA_SCHEMA
 

Detailed Description

Config flow for Aquacell integration.

Variable Documentation

◆ _LOGGER

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

Definition at line 24 of file config_flow.py.

◆ DATA_SCHEMA

homeassistant.components.aquacell.config_flow.DATA_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_BRAND, default=Brand.AQUACELL): vol.In(
4  {key: brand.name for key, brand in SUPPORTED_BRANDS.items()}
5  ),
6  vol.Required(CONF_EMAIL): str,
7  vol.Required(CONF_PASSWORD): str,
8  }
9 )

Definition at line 26 of file config_flow.py.