* Config Flow for sense * Fix unique ids so they are actually unique (and migrate the old ones) * Fix missing solar production * Do not mark sensors available until they have data * Address review items * Address review round #2
7 lines
210 B
Python
7 lines
210 B
Python
"""Constants for monitoring a Sense energy sensor."""
|
|
DOMAIN = "sense"
|
|
DEFAULT_TIMEOUT = 10
|
|
ACTIVE_UPDATE_RATE = 60
|
|
DEFAULT_NAME = "Sense"
|
|
SENSE_DATA = "sense_data"
|
|
SENSE_DEVICE_UPDATE = "sense_devices_update"
|