noTone(pin)
Set the onboard buzzer to stop playing
Parameter
Example
#include "uKitExplore2.h"
void setup() {
Initialization();
}
void loop() {
tone(131,400);
noTone(43);
delay(400);
}Last updated
Set the onboard buzzer to stop playing
#include "uKitExplore2.h"
void setup() {
Initialization();
}
void loop() {
tone(131,400);
noTone(43);
delay(400);
}Last updated