Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Panasonic Viera integration."""
2 
3 DOMAIN = "panasonic_viera"
4 
5 DEVICE_MANUFACTURER = "Panasonic"
6 
7 CONF_ON_ACTION = "turn_on_action"
8 CONF_APP_ID = "app_id"
9 CONF_ENCRYPTION_KEY = "encryption_key"
10 
11 DEFAULT_NAME = "Panasonic Viera TV"
12 DEFAULT_PORT = 55000
13 
14 ATTR_REMOTE = "remote"
15 
16 ATTR_DEVICE_INFO = "device_info"
17 ATTR_FRIENDLY_NAME = "friendlyName"
18 ATTR_MANUFACTURER = "manufacturer"
19 ATTR_MODEL_NUMBER = "modelNumber"
20 ATTR_UDN = "UDN"
21 
22 DEFAULT_MANUFACTURER = "Panasonic"
23 DEFAULT_MODEL_NUMBER = "Panasonic Viera"
24 
25 ERROR_INVALID_PIN_CODE = "invalid_pin_code"