core/homeassistant/components/govee_light_local/const.py

14 lines
335 B
Python

"""Constants for the Govee light local integration."""
from datetime import timedelta
DOMAIN = "govee_light_local"
MANUFACTURER = "Govee"
CONF_MULTICAST_ADDRESS_DEFAULT = "239.255.255.250"
CONF_TARGET_PORT_DEFAULT = 4001
CONF_LISTENING_PORT_DEFAULT = 4002
CONF_DISCOVERY_INTERVAL_DEFAULT = 60
SCAN_INTERVAL = timedelta(seconds=30)