Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constant values for pvpc_hourly_pricing."""
2 
3 from aiopvpc.const import TARIFFS
4 import voluptuous as vol
5 
6 DOMAIN = "pvpc_hourly_pricing"
7 
8 ATTR_POWER = "power"
9 ATTR_POWER_P3 = "power_p3"
10 ATTR_TARIFF = "tariff"
11 DEFAULT_NAME = "PVPC"
12 CONF_USE_API_TOKEN = "use_api_token"
13 
14 VALID_POWER = vol.All(vol.Coerce(float), vol.Range(min=1.0, max=15.0))
15 VALID_TARIFF = vol.In(TARIFFS)
16 DEFAULT_TARIFF = TARIFFS[0]