* Vodafone: add sensor platform * fix for model VOX30 v1 * fix, cleanup, 2 new sensors * apply review comments * apply last review comment
12 lines
266 B
Python
12 lines
266 B
Python
"""Vodafone Station constants."""
|
|
import logging
|
|
|
|
_LOGGER = logging.getLogger(__package__)
|
|
|
|
DOMAIN = "vodafone_station"
|
|
|
|
DEFAULT_DEVICE_NAME = "Unknown device"
|
|
DEFAULT_HOST = "192.168.1.1"
|
|
DEFAULT_USERNAME = "vodafone"
|
|
|
|
LINE_TYPES = ["dsl", "fiber", "internet_key"]
|