Hi all sorry for this question, I'm totally new arduino user , my question is how to copy this string coming from server.arg parameter
String 168,0,1,2,50,1,1,255,100,0,52,48,54,52
To
Byte store[] = {176,1,0,2,64,50};
someone help my please
I don't want to convert it, just need the same numbers
Thanks
i send that parameter from mit app inventor
http://192.168.4.1/action_page?soft=168,0,1,2,50,1,1,255,100,0,52,48,54,52,55,53,9,8,65,66,8,0,38
void handleForm() {
softstring = server.arg("soft");
String s = "<a href='/'> Go Back </a>";
server.send(200, "text/html", s); //Send web page
Serial.begin(9600);
Serial.print(softstring);
serial result
168,0,1,2,50,1,1,255,100,0,52,48,54,52,...........