Set up status and start working on filters panel #7

This commit is contained in:
Ian Renton
2025-10-02 19:33:39 +01:00
parent 9f3fc8146b
commit 0e262f68f5
17 changed files with 151 additions and 51 deletions

View File

@@ -5,9 +5,9 @@ from dataclasses import dataclass
class Band:
# Band name
name: str
# Start frequency, in kHz
# Start frequency, in Hz
start_freq: float
# Stop frequency, in kHz
# Stop frequency, in Hz
end_freq: float
# Colour to use for this band, as per PSK Reporter
color: str

View File

@@ -53,7 +53,7 @@ class Spot:
mode_type: str = None
# Source of the mode information. "SPOT", "COMMENT", "BANDPLAN" or "NONE"
mode_source: str = "NONE"
# Frequency, in kHz
# Frequency, in Hz
freq: float = None
# Band, defined by the frequency, e.g. "40m" or "70cm"
band: str = None