void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
pinMode(25, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
tone(25,900,2000);
delay(2000);
noTone(25);
}
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
pinMode(25, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
tone(25,900,2000);
delay(2000);
noTone(25);
}