I'm going bald over this. I know it's right there, but I've searched and played around for hours.
I have ....
How do I get it to ?
I've tried adding ..... and it prints the symbols. Looking for it to print the actual string above. Since my original array has 0x00 in the middle, messes things up.
I made a function that loops through the hexData array and builds a String (capital S), but I'm trying to do this sticking to char array.
I have ....
Code:
uint8_t hexData[6];
data[0] = 0x5B;
data[1] = 0x01;
data[2] = 0xFF;
data[3] = 0x00;
data[4] = 0x0F;
How do I get it to ?
Code:
char[] charData = "5B01FF00F"
I've tried adding ..... and it prints the symbols. Looking for it to print the actual string above. Since my original array has 0x00 in the middle, messes things up.
Code:
data[5] = '\0'
Serial.println((char *)VPXData_raw);
I made a function that loops through the hexData array and builds a String (capital S), but I'm trying to do this sticking to char array.