36 lines
862 B
Python
36 lines
862 B
Python
"""Constants for the Homewizard integration."""
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
from datetime import timedelta
|
|
|
|
from homewizard_energy.features import Features
|
|
from homewizard_energy.models import Data, Device, State, System
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "homewizard"
|
|
PLATFORMS = [Platform.BUTTON, Platform.NUMBER, Platform.SENSOR, Platform.SWITCH]
|
|
|
|
# Platform config.
|
|
CONF_API_ENABLED = "api_enabled"
|
|
CONF_DATA = "data"
|
|
CONF_DEVICE = "device"
|
|
CONF_PATH = "path"
|
|
CONF_PRODUCT_NAME = "product_name"
|
|
CONF_PRODUCT_TYPE = "product_type"
|
|
CONF_SERIAL = "serial"
|
|
|
|
UPDATE_INTERVAL = timedelta(seconds=5)
|
|
|
|
|
|
@dataclass
|
|
class DeviceResponseEntry:
|
|
"""Dict describing a single response entry."""
|
|
|
|
device: Device
|
|
data: Data
|
|
features: Features
|
|
state: State | None
|
|
system: System | None = None
|