mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-24 03:05:19 +01:00
15 lines
257 B
Python
15 lines
257 B
Python
"""Constants for Nord Pool."""
|
|
|
|
import logging
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
DEFAULT_SCAN_INTERVAL = 60
|
|
DOMAIN = "nordpool"
|
|
PLATFORMS = [Platform.SENSOR]
|
|
DEFAULT_NAME = "Nord Pool"
|
|
|
|
CONF_AREAS = "areas"
|