loop speech

This commit is contained in:
Morgan Redfield 2019-07-18 18:08:02 -07:00
parent 4006afff64
commit f630fc8d88
1 changed files with 5 additions and 3 deletions

View File

@ -254,6 +254,10 @@ void setup() {
radio.initialize(); radio.initialize();
radio.setRfPower(0); radio.setRfPower(0);
radio.frequency(145010); radio.frequency(145010);
}
void loop() {
radio.waitForChannel(); // wait for the channel to be empty radio.waitForChannel(); // wait for the channel to be empty
@ -275,7 +279,5 @@ void setup() {
voice.say(spFIRE); voice.say(spFIRE);
radio.setModeReceive(); radio.setModeReceive();
} delay(10000);
void loop() {
} }