d766aae436
Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: frenck <[email protected]>
8 lines
163 B
Python
8 lines
163 B
Python
"""Constants for the Homevolt integration."""
|
|
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "homevolt"
|
|
MANUFACTURER = "Homevolt"
|
|
SCAN_INTERVAL = timedelta(seconds=15)
|