Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Enigma2 platform."""
2 
3 DOMAIN = "enigma2"
4 
5 CONF_USE_CHANNEL_ICON = "use_channel_icon"
6 CONF_DEEP_STANDBY = "deep_standby"
7 CONF_SOURCE_BOUQUET = "source_bouquet"
8 CONF_MAC_ADDRESS = "mac_address"
9 
10 DEFAULT_NAME = "Enigma2 Media Player"
11 DEFAULT_PORT = 80
12 DEFAULT_SSL = False
13 DEFAULT_USE_CHANNEL_ICON = False
14 DEFAULT_USERNAME = "root"
15 DEFAULT_PASSWORD = "dreambox"
16 DEFAULT_DEEP_STANDBY = False
17 DEFAULT_SOURCE_BOUQUET = ""
18 DEFAULT_MAC_ADDRESS = ""
19 DEFAULT_VERIFY_SSL = False