Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Vera constants."""
2 
3 DOMAIN = "vera"
4 
5 CONF_CONTROLLER = "vera_controller_url"
6 CONF_LEGACY_UNIQUE_ID = "legacy_unique_id"
7 
8 VERA_ID_FORMAT = "{}_{}"
9 
10 ATTR_CURRENT_POWER_W = "current_power_w"
11 ATTR_CURRENT_ENERGY_KWH = "current_energy_kwh"
12 
13 CONTROLLER_DATAS = "controller_datas"