-
Notifications
You must be signed in to change notification settings - Fork 41
API Change in PUT RoomClimateControl/state? #116
Description
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
- setpointTemperatureForLevelComfort
- setpointTemperatureForLevelEco
- schedule
- I can't find a changelog for these things, is there any?
- Is it possible to change these 3 settings otherwise by API?
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": []
}
]
}
}