Node Web Bluetooth
    Preparing search index...

    Interface BluetoothOptions

    Bluetooth Options interface

    interface BluetoothOptions {
        adapterIndex?: number;
        allowAllDevices?: boolean;
        deviceFound?: (device: BluetoothDevice, selectFn: () => void) => boolean;
        referringDevice?: BluetoothDevice;
        scanTime?: number;
    }
    Index

    Properties

    adapterIndex?: number

    An optional index of bluetooth adapter to use

    allowAllDevices?: boolean

    Optional flag to automatically allow all devices

    deviceFound?: (device: BluetoothDevice, selectFn: () => void) => boolean

    A device found callback function to allow the user to select a device

    referringDevice?: BluetoothDevice

    An optional referring device

    scanTime?: number

    The amount of seconds to scan for the device (default is 10)