You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got it to compile and run, but nothing happened.
Current Behavior
Serial.print("hello: ");
radio.setFrequency(frequency); //Set Start Frequency
delay(20);
}
void loop() {
//Sweep
Serial.print("hello2: ");
if (frequency <= 108.00) {
//Get Data
bool stereo = radio.isStereo();
short lvl = radio.getSignalLevel();
Serial.print("hello3: ");
//Is it useable?
if (lvl >= minlvl && stereo) {
foundStation(frequency, lvl); //Print Station to Console
}
it printed hello2 and that was it.
Possible Solution
No idea. I just wanted to try the standby function since this thing only runs a few minutes a day but the Arduino is on all the time.
Steps to Reproduce (for bugs)
Context
Your Environment
Version used:
Dev. Environment and Version:
Operating System and version:
Link to your project (optional):
Arduini wifi rev2 with IDE version 1.8.13
The text was updated successfully, but these errors were encountered:
Expected Behavior
I got it to compile and run, but nothing happened.
Current Behavior
Serial.print("hello: ");
radio.setFrequency(frequency); //Set Start Frequency
delay(20);
}
void loop() {
//Sweep
Serial.print("hello2: ");
if (frequency <= 108.00) {
//Get Data
bool stereo = radio.isStereo();
short lvl = radio.getSignalLevel();
Serial.print("hello3: ");
//Is it useable?
if (lvl >= minlvl && stereo) {
foundStation(frequency, lvl); //Print Station to Console
}
it printed hello2 and that was it.
Possible Solution
No idea. I just wanted to try the standby function since this thing only runs a few minutes a day but the Arduino is on all the time.
Steps to Reproduce (for bugs)
Context
Your Environment
Arduini wifi rev2 with IDE version 1.8.13
The text was updated successfully, but these errors were encountered: