Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Integration shared constants."""
2 
3 import logging
4 
5 DATA_VLC = "vlc"
6 DATA_AVAILABLE = "available"
7 DEFAULT_NAME = "VLC-TELNET"
8 DEFAULT_PORT = 4212
9 DOMAIN = "vlc_telnet"
10 LOGGER = logging.getLogger(__package__)