Add vlc telnet config flow (#57513)

This commit is contained in:
Martin Hjelmare 2021-10-15 20:46:58 +02:00 committed by GitHub
parent aeb00823aa
commit 31ccaac865
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 715 additions and 115 deletions

View file

@ -0,0 +1,9 @@
"""Integration shared constants."""
import logging
DATA_VLC = "vlc"
DATA_AVAILABLE = "available"
DEFAULT_NAME = "VLC-TELNET"
DEFAULT_PORT = 4212
DOMAIN = "vlc_telnet"
LOGGER = logging.getLogger(__package__)