Add clear SDR device selection for ADS-B and airband listening

- Add ADS-B device selector with label before START button
- Add Listen label for airband device selector
- Track which device is actively used for ADS-B tracking
- Disable ADS-B device selector while tracking is active
- Update device conflict detection to use actual selected device
- Consolidate device selector initialization into single function
- Remove duplicate device loading from initAirband()
This commit is contained in:
Smittix
2026-01-15 14:11:19 +00:00
parent 319ea2d01d
commit ac6d1b570d
2 changed files with 99 additions and 45 deletions

View File

@@ -906,6 +906,21 @@ body {
flex-shrink: 0;
}
.sdr-group {
display: flex;
align-items: center;
gap: 4px;
flex-shrink: 0;
}
.sdr-label {
font-size: 9px;
color: var(--accent-cyan);
text-transform: uppercase;
font-weight: 600;
letter-spacing: 0.5px;
}
.airband-controls {
display: flex;
align-items: center;