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

Classes

class  AndroidTVRemoteConfigFlow
 
class  AndroidTVRemoteOptionsFlowHandler
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
string APPS_NEW_ID = "NewApp"
 
string CONF_APP_DELETE = "app_delete"
 
string CONF_APP_ID = "app_id"
 
 STEP_PAIR_DATA_SCHEMA
 
 STEP_USER_DATA_SCHEMA
 

Detailed Description

Config flow for Android TV Remote integration.

Variable Documentation

◆ _LOGGER

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

Definition at line 38 of file config_flow.py.

◆ APPS_NEW_ID

string homeassistant.components.androidtv_remote.config_flow.APPS_NEW_ID = "NewApp"

Definition at line 40 of file config_flow.py.

◆ CONF_APP_DELETE

string homeassistant.components.androidtv_remote.config_flow.CONF_APP_DELETE = "app_delete"

Definition at line 41 of file config_flow.py.

◆ CONF_APP_ID

string homeassistant.components.androidtv_remote.config_flow.CONF_APP_ID = "app_id"

Definition at line 42 of file config_flow.py.

◆ STEP_PAIR_DATA_SCHEMA

homeassistant.components.androidtv_remote.config_flow.STEP_PAIR_DATA_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required("pin"): str,
4  }
5 )

Definition at line 50 of file config_flow.py.

◆ STEP_USER_DATA_SCHEMA

homeassistant.components.androidtv_remote.config_flow.STEP_USER_DATA_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required("host"): str,
4  }
5 )

Definition at line 44 of file config_flow.py.