Hello everyone!
I used the code inside this link to do my project
this code, allows us to send udp packets.
It use the function -> Udp.write("Example!");
But in my project, i get some values from sensors and then, i want send by udp packet using Udp.write(). I have changed the values to String, and then i make a concatenation with a "|" separator. The final String is like that:
String sensors = "myTemperature+"|"+myHumidity;
Now i want to use Udp.write(sensors), but i get an error....
Can someone help me, please. Must be easy, but i can't find a solution.
Thank you so much