Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature Request] Spectrum Display #95

Open
JyeSmith opened this issue Jun 19, 2018 · 1 comment
Open

[Feature Request] Spectrum Display #95

JyeSmith opened this issue Jun 19, 2018 · 1 comment

Comments

@JyeSmith
Copy link

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) { }
 
}

image

@floriangaller
Copy link

Hi,

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.

best regards
Florian

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants