/** Exemple Arduino tone(). */ int PIN_BUZZER = 9; void setup () { pinMode(PIN_BUZZER,OUTPUT); tone (PIN_BUZZER, 440); } void loop ( ){ }