Problem issues,
I have some trouble to communicate information using UDP
[UDPSendReceiveString,pde]
..
..
char ReplyBuffer[] = "acknowledged"; // a string to send back
...
...
Udp.beginPacket(Udp.remoteIP(), Udp.remotePort());
Udp.write(ReplyBuffer);
Udp.endPacket();
...
...
I would like to send float() to a PC program written in Processing over my LAN/WLAN and i have problems to send or convert my float variable in ReplyBuffer[] when I
try to convert data to string i get this errors
float tmp102temp = 22.34;
char ReplyBuffer[] = {tmp102temp};
The receiving end I get the following result "Vc" and if I try and mix something I get very strange result but i like to get a float or string, maybe a int or something that I can
use in my processing application.
Any tips and tricks are welcome to solve this problem