I have two Tado Radiator thermostats. Unfortunately, HA component doesn’t display two important properties: Battery Level and Temperature Offset. It would be great to have them displayed and to be able to change Temperature Offset from HA.
That should be easy because this functionality is supported by Tado API:
curl -s -m 5 https://my.tado.com/api/v2/devices/$DEVICE/ -H “Authorization: Bearer $TOKEN” | jq -r ‘.batteryState’
curl -s -X PUT https://my.tado.com/api/v2/devices/$DEVICE/temperatureOffset -H “Authorization: Bearer $TOKEN” -H “Content-Type: application/json” -d “{‘celsius’: 1.0}”
See http://blog.scphillips.com/posts/2017/01/the-tado-api-v2/ for details.
Thanks!