mirror of
https://github.com/home-assistant/core.git
synced 2025-07-10 14:57:09 +00:00
vicare: Add support for hybrid devices (#64776)
This commit is contained in:
parent
8d6880ab85
commit
b8237e5ec9
@ -46,6 +46,7 @@ class HeatingType(enum.Enum):
|
|||||||
pellets = "pellets"
|
pellets = "pellets"
|
||||||
heatpump = "heatpump"
|
heatpump = "heatpump"
|
||||||
fuelcell = "fuelcell"
|
fuelcell = "fuelcell"
|
||||||
|
hybrid = "hybrid"
|
||||||
|
|
||||||
|
|
||||||
DEFAULT_HEATING_TYPE = HeatingType.auto
|
DEFAULT_HEATING_TYPE = HeatingType.auto
|
||||||
@ -57,4 +58,5 @@ HEATING_TYPE_TO_CREATOR_METHOD = {
|
|||||||
HeatingType.heatpump: "asHeatPump",
|
HeatingType.heatpump: "asHeatPump",
|
||||||
HeatingType.oil: "asOilBoiler",
|
HeatingType.oil: "asOilBoiler",
|
||||||
HeatingType.pellets: "asPelletsBoiler",
|
HeatingType.pellets: "asPelletsBoiler",
|
||||||
|
HeatingType.hybrid: "asHybridDevice",
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user