Lassen Sie uns zum Beispiel zwei Strings verketten und je nach Ausgabe der Funktionconcat()eine Erfolgs- oder Misserfolgsmeldung anzeigen. Siehe Code unten. voidsetup(){String s1="hello";String s2=" World";bool b=s1.concat(s2);Serial.begin(9600);Serial.println(s1);if(b){Serial.println...
they’re actually pretty easy. I’m posting this so that when I need to look it up in the future, I can easily find it and maybe I can help somebody else out too.