1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
|
from typing import Any, List
from PyViCare.PyViCareHeatingDevice import (HeatingDevice,
HeatingDeviceWithComponent,
get_available_burners)
from PyViCare.PyViCareUtils import handleNotSupported
class GazBoiler(HeatingDevice):
@property
def burners(self) -> List[Any]:
return list([self.getBurner(x) for x in self.getAvailableBurners()])
def getBurner(self, burner):
return GazBurner(self, burner)
@handleNotSupported
def getAvailableBurners(self):
return get_available_burners(self.service)
@handleNotSupported
def getGasConsumptionHeatingUnit(self):
return self.getProperty("heating.gas.consumption.heating")["properties"]["day"]["unit"]
@handleNotSupported
def getGasConsumptionHeatingDays(self):
return self.getProperty("heating.gas.consumption.heating")["properties"]["day"]["value"]
@handleNotSupported
def getGasConsumptionHeatingToday(self):
return self.getProperty("heating.gas.consumption.heating")["properties"]["day"]["value"][0]
@handleNotSupported
def getGasConsumptionHeatingWeeks(self):
return self.getProperty("heating.gas.consumption.heating")["properties"]["week"]["value"]
@handleNotSupported
def getGasConsumptionHeatingThisWeek(self):
return self.getProperty("heating.gas.consumption.heating")["properties"]["week"]["value"][0]
@handleNotSupported
def getGasConsumptionHeatingMonths(self):
return self.getProperty("heating.gas.consumption.heating")["properties"]["month"]["value"]
@handleNotSupported
def getGasConsumptionHeatingThisMonth(self):
return self.getProperty("heating.gas.consumption.heating")["properties"]["month"]["value"][0]
@handleNotSupported
def getGasConsumptionHeatingYears(self):
return self.getProperty("heating.gas.consumption.heating")["properties"]["year"]["value"]
@handleNotSupported
def getGasConsumptionHeatingThisYear(self):
return self.getProperty("heating.gas.consumption.heating")["properties"]["year"]["value"][0]
@handleNotSupported
def getGasConsumptionDomesticHotWaterUnit(self):
return self.getProperty("heating.gas.consumption.dhw")["properties"]["day"]["unit"]
@handleNotSupported
def getGasConsumptionDomesticHotWaterDays(self):
return self.getProperty("heating.gas.consumption.dhw")["properties"]["day"]["value"]
@handleNotSupported
def getGasConsumptionDomesticHotWaterToday(self):
return self.getProperty("heating.gas.consumption.dhw")["properties"]["day"]["value"][0]
@handleNotSupported
def getGasConsumptionDomesticHotWaterWeeks(self):
return self.getProperty("heating.gas.consumption.dhw")["properties"]["week"]["value"]
@handleNotSupported
def getGasConsumptionDomesticHotWaterThisWeek(self):
return self.getProperty("heating.gas.consumption.dhw")["properties"]["week"]["value"][0]
@handleNotSupported
def getGasConsumptionDomesticHotWaterMonths(self):
return self.getProperty("heating.gas.consumption.dhw")["properties"]["month"]["value"]
@handleNotSupported
def getGasConsumptionDomesticHotWaterThisMonth(self):
return self.getProperty("heating.gas.consumption.dhw")["properties"]["month"]["value"][0]
@handleNotSupported
def getGasConsumptionDomesticHotWaterYears(self):
return self.getProperty("heating.gas.consumption.dhw")["properties"]["year"]["value"]
@handleNotSupported
def getGasConsumptionDomesticHotWaterThisYear(self):
return self.getProperty("heating.gas.consumption.dhw")["properties"]["year"]["value"][0]
@handleNotSupported
def getBoilerTemperature(self):
return self.getProperty("heating.boiler.sensors.temperature.main")["properties"]["value"]["value"]
@handleNotSupported
def getBoilerTargetTemperature(self):
return self.getProperty("heating.boiler.temperature")["properties"]["value"]["value"]
@handleNotSupported
def getDomesticHotWaterChargingLevel(self):
return self.getProperty("heating.dhw.charging.level")["properties"]["value"]["value"]
# Total power consumption:
@handleNotSupported
def getPowerConsumptionUnit(self):
try :
return self.getProperty("heating.power.consumption.total")["properties"]["day"]["unit"]
except KeyError:
return self.getProperty("heating.power.consumption.total")["properties"]["unit"]["value"]
@handleNotSupported
def getPowerConsumptionDays(self):
return self.getProperty("heating.power.consumption.total")["properties"]["day"]["value"]
@handleNotSupported
def getPowerConsumptionToday(self):
return self.getProperty("heating.power.consumption.total")["properties"]["day"]["value"][0]
@handleNotSupported
def getPowerConsumptionWeeks(self):
return self.getProperty("heating.power.consumption.total")["properties"]["week"]["value"]
@handleNotSupported
def getPowerConsumptionThisWeek(self):
return self.getProperty("heating.power.consumption.total")["properties"]["week"]["value"][0]
@handleNotSupported
def getPowerConsumptionMonths(self):
return self.getProperty("heating.power.consumption.total")["properties"]["month"]["value"]
@handleNotSupported
def getPowerConsumptionThisMonth(self):
return self.getProperty("heating.power.consumption.total")["properties"]["month"]["value"][0]
@handleNotSupported
def getPowerConsumptionYears(self):
return self.getProperty("heating.power.consumption.total")["properties"]["year"]["value"]
@handleNotSupported
def getPowerConsumptionThisYear(self):
return self.getProperty("heating.power.consumption.total")["properties"]["year"]["value"][0]
# Flow
@handleNotSupported
def getVolumetricFlowReturn(self):
return self.getProperty("heating.sensors.volumetricFlow.allengra")["properties"]["value"]["value"]
# For Vitodens-100W new "summary" api methods
# Gas consumption for Heating data:
@handleNotSupported
def getGasSummaryConsumptionHeatingUnit(self):
return self.getProperty("heating.gas.consumption.summary.heating")["properties"]["currentDay"]["unit"]
@handleNotSupported
def getGasSummaryConsumptionHeatingCurrentDay(self):
return self.getProperty("heating.gas.consumption.summary.heating")["properties"]["currentDay"]["value"]
@handleNotSupported
def getGasSummaryConsumptionHeatingCurrentMonth(self):
return self.getProperty("heating.gas.consumption.summary.heating")["properties"]["currentMonth"]["value"]
@handleNotSupported
def getGasSummaryConsumptionHeatingCurrentYear(self):
return self.getProperty("heating.gas.consumption.summary.heating")["properties"]["currentYear"]["value"]
@handleNotSupported
def getGasSummaryConsumptionHeatingLastMonth(self):
return self.getProperty("heating.gas.consumption.summary.heating")["properties"]["lastMonth"]["value"]
@handleNotSupported
def getGasSummaryConsumptionHeatingLastSevenDays(self):
return self.getProperty("heating.gas.consumption.summary.heating")["properties"]["lastSevenDays"]["value"]
@handleNotSupported
def getGasSummaryConsumptionHeatingLastYear(self):
return self.getProperty("heating.gas.consumption.summary.heating")["properties"]["lastYear"]["value"]
# Gas consumption for Domestic Hot Water data:
@handleNotSupported
def getGasSummaryConsumptionDomesticHotWaterUnit(self):
return self.getProperty("heating.gas.consumption.summary.dhw")["properties"]["currentDay"]["unit"]
@handleNotSupported
def getGasSummaryConsumptionDomesticHotWaterCurrentDay(self):
return self.getProperty("heating.gas.consumption.summary.dhw")["properties"]["currentDay"]["value"]
@handleNotSupported
def getGasSummaryConsumptionDomesticHotWaterCurrentMonth(self):
return self.getProperty("heating.gas.consumption.summary.dhw")["properties"]["currentMonth"]["value"]
@handleNotSupported
def getGasSummaryConsumptionDomesticHotWaterCurrentYear(self):
return self.getProperty("heating.gas.consumption.summary.dhw")["properties"]["currentYear"]["value"]
@handleNotSupported
def getGasSummaryConsumptionDomesticHotWaterLastMonth(self):
return self.getProperty("heating.gas.consumption.summary.dhw")["properties"]["lastMonth"]["value"]
@handleNotSupported
def getGasSummaryConsumptionDomesticHotWaterLastSevenDays(self):
return self.getProperty("heating.gas.consumption.summary.dhw")["properties"]["lastSevenDays"]["value"]
@handleNotSupported
def getGasSummaryConsumptionDomesticHotWaterLastYear(self):
return self.getProperty("heating.gas.consumption.summary.dhw")["properties"]["lastYear"]["value"]
# Power consumption for Heating:
@handleNotSupported
def getPowerConsumptionHeatingUnit(self):
try:
return self.getProperty("heating.power.consumption.heating")["properties"]["day"]["unit"]
except KeyError:
return self.getProperty("heating.power.consumption.heating")["properties"]["unit"]["value"]
@handleNotSupported
def getPowerConsumptionHeatingToday(self):
return self.getProperty("heating.power.consumption.heating")["properties"]["day"]["value"][0]
@handleNotSupported
def getPowerConsumptionHeatingThisMonth(self):
return self.getProperty("heating.power.consumption.heating")["properties"]["month"]["value"][0]
@handleNotSupported
def getPowerConsumptionHeatingThisYear(self):
return self.getProperty("heating.power.consumption.heating")["properties"]["year"]["value"][0]
# Power summary consumption for Heating:
@handleNotSupported
def getPowerSummaryConsumptionHeatingUnit(self):
return self.getProperty("heating.power.consumption.summary.heating")["properties"]["currentDay"]["unit"]
@handleNotSupported
def getPowerSummaryConsumptionHeatingCurrentDay(self):
return self.getProperty("heating.power.consumption.summary.heating")["properties"]["currentDay"]["value"]
@handleNotSupported
def getPowerSummaryConsumptionHeatingCurrentMonth(self):
return self.getProperty("heating.power.consumption.summary.heating")["properties"]["currentMonth"]["value"]
@handleNotSupported
def getPowerSummaryConsumptionHeatingCurrentYear(self):
return self.getProperty("heating.power.consumption.summary.heating")["properties"]["currentYear"]["value"]
@handleNotSupported
def getPowerSummaryConsumptionHeatingLastMonth(self):
return self.getProperty("heating.power.consumption.summary.heating")["properties"]["lastMonth"]["value"]
@handleNotSupported
def getPowerSummaryConsumptionHeatingLastSevenDays(self):
return self.getProperty("heating.power.consumption.summary.heating")["properties"]["lastSevenDays"]["value"]
@handleNotSupported
def getPowerSummaryConsumptionHeatingLastYear(self):
return self.getProperty("heating.power.consumption.summary.heating")["properties"]["lastYear"]["value"]
# Power consumption for Domestic Hot Water:
@handleNotSupported
def getPowerConsumptionDomesticHotWaterUnit(self):
try:
return self.getProperty("heating.power.consumption.dhw")["properties"]["day"]["unit"]
except KeyError:
return self.getProperty("heating.power.consumption.dhw")["properties"]["unit"]["value"]
@handleNotSupported
def getPowerConsumptionDomesticHotWaterToday(self):
return self.getProperty("heating.power.consumption.dhw")["properties"]["day"]["value"][0]
@handleNotSupported
def getPowerConsumptionDomesticHotWaterThisMonth(self):
return self.getProperty("heating.power.consumption.dhw")["properties"]["month"]["value"][0]
@handleNotSupported
def getPowerConsumptionDomesticHotWaterThisYear(self):
return self.getProperty("heating.power.consumption.dhw")["properties"]["year"]["value"][0]
# Power summary consumption for Domestic Hot Water:
@handleNotSupported
def getPowerSummaryConsumptionDomesticHotWaterUnit(self):
return self.getProperty("heating.power.consumption.summary.dhw")["properties"]["currentDay"]["unit"]
@handleNotSupported
def getPowerSummaryConsumptionDomesticHotWaterCurrentDay(self):
return self.getProperty("heating.power.consumption.summary.dhw")["properties"]["currentDay"]["value"]
@handleNotSupported
def getPowerSummaryConsumptionDomesticHotWaterCurrentMonth(self):
return self.getProperty("heating.power.consumption.summary.dhw")["properties"]["currentMonth"]["value"]
@handleNotSupported
def getPowerSummaryConsumptionDomesticHotWaterCurrentYear(self):
return self.getProperty("heating.power.consumption.summary.dhw")["properties"]["currentYear"]["value"]
@handleNotSupported
def getPowerSummaryConsumptionDomesticHotWaterLastMonth(self):
return self.getProperty("heating.power.consumption.summary.dhw")["properties"]["lastMonth"]["value"]
@handleNotSupported
def getPowerSummaryConsumptionDomesticHotWaterLastSevenDays(self):
return self.getProperty("heating.power.consumption.summary.dhw")["properties"]["lastSevenDays"]["value"]
@handleNotSupported
def getPowerSummaryConsumptionDomesticHotWaterLastYear(self):
return self.getProperty("heating.power.consumption.summary.dhw")["properties"]["lastYear"]["value"]
@handleNotSupported
def getSupplyPressureUnit(self) -> str:
# Returns heating supply pressure unit (e.g. bar)
return str(self.getProperty("heating.sensors.pressure.supply")["properties"]["value"]["unit"])
@handleNotSupported
def getSupplyPressure(self) -> float:
# Returns heating supply pressure
return float(self.getProperty("heating.sensors.pressure.supply")["properties"]["value"]["value"])
class GazBurner(HeatingDeviceWithComponent):
@property
def burner(self) -> str:
return self.component
@handleNotSupported
def getActive(self):
return self.getProperty(f"heating.burners.{self.burner}")["properties"]["active"]["value"]
@handleNotSupported
def getHours(self):
return self.getProperty(f"heating.burners.{self.burner}.statistics")["properties"]["hours"]["value"]
@handleNotSupported
def getStarts(self):
return self.getProperty(f"heating.burners.{self.burner}.statistics")["properties"]["starts"]["value"]
@handleNotSupported
def getModulation(self):
return self.getProperty(f"heating.burners.{self.burner}.modulation")["properties"]["value"]["value"]
|