hass-core/homeassistant/components/onewire/const.py
epenet f886ea9e3d
Move onewire constants to separate file (#40550)
* Move constants to separate file

* Ignore coverage of const.py
2020-09-27 19:02:20 -05:00

12 lines
229 B
Python

"""Constants for 1-Wire component."""
CONF_MOUNT_DIR = "mount_dir"
CONF_NAMES = "names"
DEFAULT_OWSERVER_PORT = 4304
DEFAULT_SYSBUS_MOUNT_DIR = "/sys/bus/w1/devices/"
DOMAIN = "onewire"
SUPPORTED_PLATFORMS = [
"sensor",
]