Problems with txChart Arduino

57 Views Asked by At

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.

0

There are 0 best solutions below