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

Classes

class  PecoConfigFlow
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
 STEP_USER_DATA_SCHEMA
 

Detailed Description

Config flow for PECO Outage Counter integration.

Variable Documentation

◆ _LOGGER

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

Definition at line 28 of file config_flow.py.

◆ STEP_USER_DATA_SCHEMA

homeassistant.components.peco.config_flow.STEP_USER_DATA_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_COUNTY): vol.In(COUNTY_LIST),
4  vol.Optional(CONF_PHONE_NUMBER): cv.string,
5  }
6 )

Definition at line 21 of file config_flow.py.