Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Android TV Remote integration."""
2 
3 from __future__ import annotations
4 
5 from typing import Final
6 
7 DOMAIN: Final = "androidtv_remote"
8 
9 CONF_APPS = "apps"
10 CONF_ENABLE_IME: Final = "enable_ime"
11 CONF_ENABLE_IME_DEFAULT_VALUE: Final = True
12 CONF_APP_NAME = "app_name"
13 CONF_APP_ICON = "app_icon"