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

Classes

class  EcoForestConfigFlow
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
 STEP_USER_DATA_SCHEMA
 

Detailed Description

Config flow for Ecoforest integration.

Variable Documentation

◆ _LOGGER

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

Definition at line 18 of file config_flow.py.

◆ STEP_USER_DATA_SCHEMA

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

Definition at line 20 of file config_flow.py.