I'm having issues with this two lines:
const unsigned char* sendstring = reinterpret_cast<const unsigned char *>( "Hello" );
txChar.writeValue(sendstring);
is giving me this error:
invalid conversion from 'const unsigned char*' to 'unsigned char' [-fpermissive]
I was trying to convert the sendstring variable in the first line but no.