mirror of
https://github.com/smittix/intercept.git
synced 2026-04-24 22:59:59 -07:00
- Removed Baseline section from Bluetooth sidebar (no longer needed) - Fixed device filter buttons not working (changed display to '' instead of 'block' to preserve flexbox layout) - Fixed proximity radar being cut off by bottom panels: - Added overflow: hidden to radar panel - Constrained bottom panels to max-height: 120px - Made radar content respect parent boundaries Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
68 lines
3.5 KiB
HTML
68 lines
3.5 KiB
HTML
<!-- BLUETOOTH MODE -->
|
|
<div id="bluetoothMode" class="mode-content">
|
|
<!-- Capability Status -->
|
|
<div id="btCapabilityStatus" class="section" style="display: none;">
|
|
<!-- Populated by JavaScript with capability warnings -->
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>Scanner Configuration</h3>
|
|
<div class="form-group">
|
|
<label>Adapter</label>
|
|
<select id="btAdapterSelect">
|
|
<option value="">Detecting adapters...</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Scan Mode</label>
|
|
<select id="btScanMode">
|
|
<option value="auto">Auto (Recommended)</option>
|
|
<option value="bleak">Bleak Library</option>
|
|
<option value="hcitool">hcitool (Linux)</option>
|
|
<option value="bluetoothctl">bluetoothctl (Linux)</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Transport</label>
|
|
<select id="btTransport">
|
|
<option value="auto">Auto (BLE + Classic)</option>
|
|
<option value="le">BLE Only</option>
|
|
<option value="br_edr">Classic Only</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Duration (seconds, 0 = continuous)</label>
|
|
<input type="number" id="btScanDuration" value="0" min="0" max="300" placeholder="0">
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Min RSSI Filter (dBm)</label>
|
|
<input type="number" id="btMinRssi" value="-100" min="-100" max="-20" placeholder="-100">
|
|
</div>
|
|
<button class="preset-btn" onclick="btCheckCapabilities()" style="width: 100%;">
|
|
Check Capabilities
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Message Container for status cards -->
|
|
<div id="btMessageContainer"></div>
|
|
|
|
<button class="run-btn" id="startBtBtn" onclick="btStartScan()">
|
|
Start Scanning
|
|
</button>
|
|
<button class="stop-btn" id="stopBtBtn" onclick="btStopScan()" style="display: none;">
|
|
Stop Scanning
|
|
</button>
|
|
|
|
<div class="section" style="margin-top: 10px;">
|
|
<h3>Export</h3>
|
|
<div style="display: flex; gap: 8px;">
|
|
<button class="preset-btn" onclick="btExport('csv')" style="flex: 1;">
|
|
Export CSV
|
|
</button>
|
|
<button class="preset-btn" onclick="btExport('json')" style="flex: 1;">
|
|
Export JSON
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|