I have not much experience with programming. Therefore my question:
In the sketch at the line strcat(..) I get a warning from compiler: "invalid conversion from 'char' to 'const char*' "
char msgtxt[160];
void setup() {
... // here msgtxt is filled with some characters
strcat(msgtxt,' '); // add a blank to msgtxt
...
}
void loop() {
}
How can I avoid the warning, i.e. what is the correct code?