We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 467b6cc commit de6b94fCopy full SHA for de6b94f
src/index.html
@@ -28,6 +28,7 @@
28
></betaflight-logo>
29
<port-picker
30
v-model="PortHandler.portPicker"
31
+ :connected-bluetooth-devices="PortHandler.currentBluetoothPorts"
32
:connected-serial-devices="PortHandler.currentSerialPorts"
33
:connected-usb-devices="PortHandler.currentUsbPorts"
34
:show-virtual-option="PortHandler.showVirtualMode"
src/js/protocols/bluetooth.js
@@ -96,7 +96,7 @@ class BT extends EventTarget {
96
}
97
98
async loadDevices() {
99
- const devices = await this.bluetooth.getDevices();
+ const devices = await this.getDevices();
100
101
this.portCounter = 1;
102
this.devices = devices.map(device => this.createPort(device));
0 commit comments