Files
Smittix 68d831dbe3 feat: Add collapsible sidebar with mode-specific section ordering
- Sidebar sections now rearrange based on active mode
- Mode info section (e.g., WiFi Scanning, Spectrum Analyzer) appears at top expanded
- Signal Source and SDR Device sections collapse and move below mode sections
- Other mode sections default to collapsed state
- Sections restore to original containers when switching modes
- Fix SCAN/LISTEN button styling consistency in Listening Post
- Reorder WiFi sections: WiFi Scanning, Signal Source, Monitor Mode, Scan Settings, Attack Options, Proximity Alerts, Export

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-30 13:25:54 +00:00

52 lines
2.2 KiB
HTML

<!-- RTLAMR UTILITY METER MODE -->
<div id="rtlamrMode" class="mode-content">
<div class="section">
<h3>Utility Meter Reading</h3>
<p style="color: var(--text-secondary); font-size: 11px; line-height: 1.5; margin-bottom: 15px;">
Decode utility meter transmissions (water, gas, electric) using ERT protocol.
</p>
<div style="background: rgba(74, 158, 255, 0.1); border: 1px solid rgba(74, 158, 255, 0.3); border-radius: 4px; padding: 8px; font-size: 10px;">
<span style="color: var(--accent-cyan);">Controls in function bar above</span>
</div>
</div>
<div class="section">
<h3>Advanced Settings</h3>
<div class="form-group">
<label>PPM Correction</label>
<input type="text" id="rtlamrPpm" value="0" placeholder="Frequency correction">
</div>
<div class="form-group">
<label>Filter by Meter ID (optional, comma-separated)</label>
<input type="text" id="rtlamrFilterId" placeholder="e.g., 12345678,87654321">
</div>
</div>
<div class="section">
<h3>Options</h3>
<div class="checkbox-group">
<label>
<input type="checkbox" id="rtlamrUnique" checked onchange="toggleRtlamrUnique()">
Unique Messages Only
</label>
<label>
<input type="checkbox" id="rtlamrLogging" onchange="toggleRtlamrLogging()">
Enable Logging
</label>
</div>
</div>
<!-- Hidden frequency/gain inputs for compatibility with existing JS -->
<input type="hidden" id="rtlamrFrequency" value="912.0">
<input type="hidden" id="rtlamrGain" value="0">
<select id="rtlamrMsgType" style="display: none;">
<option value="scm">SCM (Standard Consumption Message)</option>
<option value="scm+">SCM+ (Enhanced)</option>
<option value="idm">IDM (Interval Data Message)</option>
<option value="netidm">NetIDM (Network IDM)</option>
<option value="r900">R900 (Neptune)</option>
<option value="r900bcd">R900 BCD</option>
<option value="all">All Types</option>
</select>
</div>