mirror of
https://github.com/home-assistant/core.git
synced 2026-09-05 21:12:24 +01:00
12 lines
295 B
Python
12 lines
295 B
Python
"""Constants for the Sunsynk integration."""
|
|
|
|
from datetime import timedelta
|
|
import logging
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "sunsynk"
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
# The inverter uploads new data to the Sunsynk cloud every five minutes.
|
|
SCAN_INTERVAL = timedelta(minutes=5)
|