I am getting an int value from one of the analog pins on my Arduino. How do I concatenate this to a String
and then convert the String
to a char[]
?
It was suggested that I try char msg[] = myString.getChars();
, but I am receiving a message that getChars
does not exist.