Description :
C’est un raccourci pratique pour effectuer la multiplication d’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/compoundmultiplication/