13 lines
287 B
Python
13 lines
287 B
Python
"""Constants for the Linky Tariff integration."""
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "linky_tarif"
|
|
PLATFORMS = [Platform.SENSOR]
|
|
|
|
CONF_IEEE = "ieee"
|
|
CONF_POLL_INTERVAL = "poll_interval"
|
|
DEFAULT_POLL_INTERVAL = 60
|
|
|
|
CLUSTER_ID = 0xFF66
|
|
ATTRIBUTE_ID = 0x0010
|
|
ENDPOINT_ID = 1 |