mirror of
https://github.com/home-assistant/core.git
synced 2025-04-28 11:17:53 +00:00
18 lines
362 B
Python
18 lines
362 B
Python
"""Constants for the PVOutput integration."""
|
|
from __future__ import annotations
|
|
|
|
from datetime import timedelta
|
|
import logging
|
|
from typing import Final
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN: Final = "pvoutput"
|
|
PLATFORMS = [Platform.SENSOR]
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
SCAN_INTERVAL = timedelta(minutes=2)
|
|
|
|
|
|
CONF_SYSTEM_ID = "system_id"
|