63 lines
1.4 KiB
Python
63 lines
1.4 KiB
Python
"""Constants for the ViCare integration."""
|
|
import enum
|
|
|
|
from homeassistant.components.sensor import SensorDeviceClass
|
|
from homeassistant.const import ENERGY_KILO_WATT_HOUR, VOLUME_CUBIC_METERS, Platform
|
|
|
|
DOMAIN = "vicare"
|
|
|
|
PLATFORMS = [
|
|
Platform.BUTTON,
|
|
Platform.CLIMATE,
|
|
Platform.SENSOR,
|
|
Platform.BINARY_SENSOR,
|
|
Platform.WATER_HEATER,
|
|
]
|
|
|
|
VICARE_DEVICE_CONFIG = "device_conf"
|
|
VICARE_API = "api"
|
|
VICARE_NAME = "ViCare"
|
|
|
|
CONF_CIRCUIT = "circuit"
|
|
CONF_HEATING_TYPE = "heating_type"
|
|
|
|
DEFAULT_SCAN_INTERVAL = 60
|
|
|
|
VICARE_CUBIC_METER = "cubicMeter"
|
|
VICARE_KWH = "kilowattHour"
|
|
|
|
VICARE_UNIT_TO_DEVICE_CLASS = {
|
|
VICARE_KWH: SensorDeviceClass.ENERGY,
|
|
VICARE_CUBIC_METER: SensorDeviceClass.GAS,
|
|
}
|
|
|
|
VICARE_UNIT_TO_UNIT_OF_MEASUREMENT = {
|
|
VICARE_KWH: ENERGY_KILO_WATT_HOUR,
|
|
VICARE_CUBIC_METER: VOLUME_CUBIC_METERS,
|
|
}
|
|
|
|
|
|
class HeatingType(enum.Enum):
|
|
"""Possible options for heating type."""
|
|
|
|
auto = "auto"
|
|
gas = "gas"
|
|
oil = "oil"
|
|
pellets = "pellets"
|
|
heatpump = "heatpump"
|
|
fuelcell = "fuelcell"
|
|
hybrid = "hybrid"
|
|
|
|
|
|
DEFAULT_HEATING_TYPE = HeatingType.auto
|
|
|
|
HEATING_TYPE_TO_CREATOR_METHOD = {
|
|
HeatingType.auto: "asAutoDetectDevice",
|
|
HeatingType.gas: "asGazBoiler",
|
|
HeatingType.fuelcell: "asFuelCell",
|
|
HeatingType.heatpump: "asHeatPump",
|
|
HeatingType.oil: "asOilBoiler",
|
|
HeatingType.pellets: "asPelletsBoiler",
|
|
HeatingType.hybrid: "asHybridDevice",
|
|
}
|