Innogy Binding OH 3 - Thermostat set Temperature does not work 2

The problem is that the new livitsi binding takes no more Numer objects inside the

item.sendCommand(value as Number)

Now you need to use it like this, because the thingproperty only takes strings…

item.sendCommand((val as Number).toString + "°C")

Works fine for me.