new version
Some checks failed
Deploy to GitHub Pages / build (push) Has been cancelled
Deploy to GitHub Pages / deploy (push) Has been cancelled

This commit is contained in:
paul2212
2026-03-18 18:41:14 +01:00
parent 1243e1f8c5
commit 72a82861e5
3 changed files with 45 additions and 19 deletions

View File

@@ -374,9 +374,9 @@
<div class="row">
<div>
<label for="transport">Transport</label>
<select id="transport">
<option value="ble"{ble_selected}>BLE</option>
<option value="classic"{classic_selected}>Classic</option>
<select id="transport" title="BLE is recommended for most users. Classic Bluetooth requires pairing and specific permissions.">
<option value="ble"{ble_selected}>BLE (Recommended)</option>
<option value="classic"{classic_selected}>Classic Bluetooth</option>
</select>
</div>
<div>
@@ -386,8 +386,8 @@
</div>
<div class="actions">
<button type="button" class="alt" onclick="runPost('pair')">Pair Device</button>
<button type="button" class="alt" onclick="runPost('unpair')">Unpair Device</button>
<button type="button" class="alt" onclick="runPost('pair')" title="Only needed for Classic Bluetooth. BLE does not require pairing.">Pair Device</button>
<button type="button" class="alt" onclick="runPost('unpair')" title="Only needed for Classic Bluetooth. BLE does not require pairing.">Unpair Device</button>
<button type="button" class="alt" onclick="runGet('status')">Get Status</button>
<button type="button" class="alt" onclick="runGet('info')">Get Info</button>
</div>