mirror of
https://github.com/home-assistant/core.git
synced 2026-02-28 22:06:25 +00:00
Signed-off-by: Daniel Hjelseth Høyer <github@dahoiv.net> Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
10 lines
199 B
Python
10 lines
199 B
Python
"""Constants for the Homevolt integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "homevolt"
|
|
MANUFACTURER = "Homevolt"
|
|
SCAN_INTERVAL = timedelta(seconds=15)
|