hass-core/homeassistant/components/vodafone_station/const.py
Simone Chemelli 2722e5ddaa
Add Vodafone Station sensor platform (#99948)
* Vodafone: add sensor platform

* fix for model VOX30 v1

* fix, cleanup, 2 new sensors

* apply review comments

* apply last review comment
2023-09-18 21:31:04 +02:00

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"]