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
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) { }
}
The text was updated successfully, but these errors were encountered:
It would be also pretty nice to make this plot for every receiver. It maybe would help to spot differences between the receiver, and thereby spot which rx is best for which channel.
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
The text was updated successfully, but these errors were encountered: