I was compiling some code with the ESP8266 and the Arduino IDE. I was trying to add a floating point value to a string inside the Up.write function. But I am always getting an error message.
How I can resolve that?
For example:
float position;
position = 23.5;
Udp.write("Value is" + position);
But this creates errors. Any help on that?