Skip to content

[Feature Request] Spectrum Display #95

@JyeSmith

Description

@JyeSmith

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions