bwbboot wrote: ↑Tuesday 09 January 2024 21:42
Nice Tuk90 this is working great now. My wish list would be the setpoint function, and if you can add the Heating Energy stats that would be awesome too
Code: Select all
GET appliances/{appliance_id}/energyconsumption/daily
Get the daily energy consumption of the appliance. This request requires two query parameters, startDate and endDate, which should contain an ISO-8601 timestamp, e.g. 2023-01-03 00:00:00.000Z.
Response:
{
"startDateTimeUsed": "2023-01-03T00:00:00+00:00",
"endDateTimeUsed": "2023-02-13T00:00:00+00:00",
"data": [
{
"timeStamp": "2023-01-03T00:00:00+00:00",
"heatingEnergyConsumed": 3.00,
"hotWaterEnergyConsumed": 3.00,
"coolingEnergyConsumed": 0,
"heatingEnergyDelivered": 0,
"hotWaterEnergyDelivered": 0,
"coolingEnergyDelivered": 0
},
...
]
}
Cheers!
Edit: Typo
Hi bwboot,
Which data do you want, and how do you want to have it filled in Domoticz? Do you have to see this grow during the day or do you want to know the result of the previous day or something else?
The data that I got for example the 3th of januari:
{
"timeStamp": "2024-01-03T00:00:00+00:00",
"heatingEnergyConsumed": 9.00,
"hotWaterEnergyConsumed": 0,
"coolingEnergyConsumed": 0,
"heatingEnergyDelivered": 46.00,
"hotWaterEnergyDelivered": 0,
"coolingEnergyDelivered": 0
},