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

Classes

class  MyStromConfigFlow
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
string DEFAULT_NAME = "myStrom Device"
 
 STEP_USER_DATA_SCHEMA
 

Detailed Description

Config flow for myStrom integration.

Variable Documentation

◆ _LOGGER

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

Definition at line 17 of file config_flow.py.

◆ DEFAULT_NAME

string homeassistant.components.mystrom.config_flow.DEFAULT_NAME = "myStrom Device"

Definition at line 19 of file config_flow.py.

◆ STEP_USER_DATA_SCHEMA

homeassistant.components.mystrom.config_flow.STEP_USER_DATA_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Optional(CONF_NAME, default=DEFAULT_NAME): str,
4  vol.Required(CONF_HOST): str,
5  }
6 )

Definition at line 21 of file config_flow.py.