mirror of
https://github.com/home-assistant/core.git
synced 2026-02-23 03:17:06 +00:00
14 lines
267 B
Python
14 lines
267 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"]
|