Page 1 of 1

Alternative for getString() function

Posted: Tue Jun 05, 2018 5:14 pm
by gajendra1409
Hi The data I am supposed to receive for my get request looks like,
0x00,0x00,0x00,0x00,0x01,0xff,0x04
But the getString() funtion terminates the string on first 0x00 as it a NULL.

is any other function available to get a response for get request.
or alternative to the following line so I can receive my data in uint8_t formate
String response = http.getString();

Thanks