Description :
C’est un raccourci pratique pour effectuer la soustraction d’une constante ou d’une variable d’une 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/compoundsubtraction/