Hi,
I have trouble and I will appreciate help..
I´d like to create long! string which will be send as XML. Honestly as beginer I don´t know how to create that string. Somewhere I read that long Strings are not reccomended so I tried that bellow.. but I don´t know how to implement variable "SensorValue"
Any advice?
Richard
char *SendXML = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n"
"<DATA>\r\n"
"<SENSOR>SensorName</SENSOR>\r\n"
"<VALUE>" + SensorValue + "</VALUE>\r\n"
...
...
...
"</DATA>\r\n";