mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-25 07:05:47 +01: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)
|