Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Govee light local integration."""
2 
3 from datetime import timedelta
4 
5 DOMAIN = "govee_light_local"
6 MANUFACTURER = "Govee"
7 
8 CONF_MULTICAST_ADDRESS_DEFAULT = "239.255.255.250"
9 CONF_TARGET_PORT_DEFAULT = 4001
10 CONF_LISTENING_PORT_DEFAULT = 4002
11 CONF_DISCOVERY_INTERVAL_DEFAULT = 60
12 
13 SCAN_INTERVAL = timedelta(seconds=30)
14 DISCOVERY_TIMEOUT = 5