If you add the following code:
String operator + (String a, String b) {
String result;
result = a;
result += b;
return result;
}
to the top of your Arduino program (above "void setup()"); the string concatenation operator ("+") should work.
If you add the following code:
String operator + (String a, String b) {
String result;
result = a;
result += b;
return result;
}
to the top of your Arduino program (above "void setup()"); the string concatenation operator ("+") should work.