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

Classes

class  AnthemAVConfigFlow
 

Functions

Connection connect_device (dict[str, Any] user_input)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
 STEP_USER_DATA_SCHEMA
 

Detailed Description

Config flow for Anthem A/V Receivers integration.

Function Documentation

◆ connect_device()

Connection homeassistant.components.anthemav.config_flow.connect_device ( dict[str, Any]  user_input)
Connect to the AVR device.

Definition at line 30 of file config_flow.py.

Variable Documentation

◆ _LOGGER

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

Definition at line 20 of file config_flow.py.

◆ STEP_USER_DATA_SCHEMA

homeassistant.components.anthemav.config_flow.STEP_USER_DATA_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_HOST): cv.string,
4  vol.Required(CONF_PORT, default=DEFAULT_PORT): int,
5  }
6 )

Definition at line 22 of file config_flow.py.