Hi,
Can a tab be added to the app to display a spectrum?
Below is a proof of principal I hacked together and plotted out. Its nothing more than a sweep in 1 MHz increments. I believe this will be a useful, light weight way for quickly checking channels and any VTx overlap.
Cheers
Jye
void loop() {
for (int i=5650; i <= 5950; i++){
frequency = setModuleFrequency(i);
rssi = getFilteredRSSI();
Serial.print(frequency);
Serial.print("\t");
Serial.print(rssi);
Serial.println("");
}
while(1) { }
}

Hi,
Can a tab be added to the app to display a spectrum?
Below is a proof of principal I hacked together and plotted out. Its nothing more than a sweep in 1 MHz increments. I believe this will be a useful, light weight way for quickly checking channels and any VTx overlap.
Cheers
Jye