More Informations over "sendCommand"

Hello,

how can I send for e.g.
Arduino_Messwerte.sendCommand("<(without a space)TemperaturSollwert," + TemperaturSollwert_SP + “”)
at the end it should looks like: <(without a space)TemperaturSollwert, 22.50>
How can I do this?

Thanks a lot!!!

Try the following:

Arduino_Messwerte.sendCommand("<(without a space)TemperaturSollwert," + TemperaturSollwert_SP.state.toString + ">")

I assume that TemperaturSollwert_SP is an item of type Number, right?

THAAAAAANKS a lot Kjetil Asdal !!!
It works perfect!!!

Yes it’s an item ot type Number.
Perfect!!!