As the title says, I need to send static volatile byte type of data to a server. ESP32 I use if it is important. Now, It is not a problem for me to send say a string, but never mess up with this type of data.
I know I have to put all those arrays of bytes into a String or so. But not sure how.
I have those bytes in a loop so it has something similar:
01000010
01000010
01000010
01000010
01000010
I use dataCollectBuffer[i]
Is there any concatenate function that I could pack those bytes, then convert into a String and send it to a server?