Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Kodi platform."""
2 
3 DOMAIN = "kodi"
4 
5 CONF_WS_PORT = "ws_port"
6 
7 DATA_CONNECTION = "connection"
8 DATA_KODI = "kodi"
9 DATA_REMOVE_LISTENER = "remove_listener"
10 
11 DEFAULT_PORT = 8080
12 DEFAULT_SSL = False
13 DEFAULT_TIMEOUT = 5
14 DEFAULT_WS_PORT = 9090
15 
16 EVENT_TURN_OFF = "kodi.turn_off"
17 EVENT_TURN_ON = "kodi.turn_on"