Description :
C’est un raccourci pratique pour effectuer une addition sur une variable avec une autre constante ou variable.
Syntaxe :
x += y; // équivalent à l'expression x = x + y;
Paramètres :
Exemple de code :
Source : https://www.arduino.cc/reference/en/language/structure/compound-operators/compoundaddition/