You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I cannot provide you the whole details at the moment, but after the new schedule UI was implemented, there are no "ECO" or "COMFORT" temperatures anymore, because the schedule allows more than two temperatures now.
I hope to find the time, to update the documentation in the near future.
Hi,
something must have changed in the API since last year for
/devices/roomClimateControl_hz_xx/services/RoomClimateControl/state
I'm now on API Version 3.14 and it is not possible anymore to set
e.g.
URL: /devices/roomClimateControl_hz_xx/services/RoomClimateControl/state
WORKING
{"@type":"climateControlState","setpointTemperature":22}
NOT WORKING (HTTP Status Code: 500)
{"@type":"climateControlState","setpointTemperatureForLevelComfort":24}
NOT WORKING (HTTP Status Code: 500)
{
"@type": "climateControlState",
"schedule": {
"profiles": [
{
"day": "MONDAY",
"switchPoints": []
},
{
"day": "TUESDAY",
"switchPoints": []
},
{
"day": "WEDNESDAY",
"switchPoints": []
},
{
"day": "THURSDAY",
"switchPoints": [
{
"startTimeMinutes": 0,
"value": {
"@type": "temperatureLevelSwitchPointValue",
"temperatureLevel": "ECO"
}
},
{
"startTimeMinutes": 360,
"value": {
"@type": "temperatureLevelSwitchPointValue",
"temperatureLevel": "COMFORT"
}
},
{
"startTimeMinutes": 1080,
"value": {
"@type": "temperatureLevelSwitchPointValue",
"temperatureLevel": "ECO"
}
}
]
},
{
"day": "FRIDAY",
"switchPoints": []
},
{
"day": "SATURDAY",
"switchPoints": []
},
{
"day": "SUNDAY",
"switchPoints": []
}
]
}
}
The text was updated successfully, but these errors were encountered: