Documentation Index
Fetch the complete documentation index at: https://docs.rebellapp.com/llms.txt
Use this file to discover all available pages before exploring further.
Use this API to listen for newly discovered Bluetooth devices during discovery. The callback triggers when new devices are found.
Parameters
| Property | Type | Required | Description |
|---|
| callback | Function | Yes | Callback when devices are found |
Callback Parameters
| Property | Type | Description |
|---|
| devices | Array | Array of newly found devices |
Device Object Properties
| Property | Type | Description |
|---|
| deviceId | String | Device identifier |
| name | String | Device name (may be empty) |
| RSSI | Number | Signal strength (dBm) |
| advertisData | ArrayBuffer | Advertisement data |
Code Example
Basic Usage
my.onBluetoothDeviceFound((res) => {
res.devices.forEach(device => {
console.log('Found:', device.name, device.deviceId);
});
});
Build Device List
Page({
data: {
devices: []
},
onLoad() {
my.openBluetoothAdapter({
success: () => {
this.setupDeviceListener();
this.startScan();
}
});
},
setupDeviceListener() {
my.onBluetoothDeviceFound((res) => {
const { devices } = this.data;
res.devices.forEach(newDevice => {
const exists = devices.find(d => d.deviceId === newDevice.deviceId);
if (!exists && newDevice.name) {
devices.push(newDevice);
}
});
this.setData({ devices });
});
},
startScan() {
my.startBluetoothDevicesDiscovery();
},
onUnload() {
my.offBluetoothDeviceFound();
my.closeBluetoothAdapter();
}
});
Find Specific Device
Page({
findDevice(targetName) {
my.onBluetoothDeviceFound((res) => {
const target = res.devices.find(d => d.name === targetName);
if (target) {
my.stopBluetoothDevicesDiscovery();
my.offBluetoothDeviceFound();
this.connectToDevice(target);
}
});
my.startBluetoothDevicesDiscovery();
},
connectToDevice(device) {
console.log('Connecting to:', device.name);
}
});
Remember to call my.offBluetoothDeviceFound when done to stop receiving device updates.
my.offBluetoothDeviceFound
Stop listening
my.startBluetoothDevicesDiscovery
Start discovery