Files
core/homeassistant/components/homewizard/const.py
T
Duco Sebel a969f69fd5 Add support for controlling HomeWizard Energy Socket status light level (#82378)
* Add control option for Energy Socket status LED

* Add tests for number

* Fix failing tests in switch

* Fix comments

* Adjust name

* Simplify device_info
2022-11-23 11:47:32 -05:00

33 lines
731 B
Python

"""Constants for the Homewizard integration."""
from __future__ import annotations
from datetime import timedelta
from typing import TypedDict
# Set up.
from homewizard_energy.models import Data, Device, State
from homeassistant.const import Platform
DOMAIN = "homewizard"
PLATFORMS = [Platform.SENSOR, Platform.SWITCH, Platform.NUMBER]
# 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)
class DeviceResponseEntry(TypedDict):
"""Dict describing a single response entry."""
device: Device
data: Data
state: State