kaios-types
    Preparing search index...

    Interface BluetoothGattService

    bluetooth

    interface BluetoothGattService {
        characteristics: BluetoothGattCharacteristic[];
        includedServices: BluetoothGattService[];
        instanceId: number;
        isPrimary: boolean;
        uuid: string;
        addCharacteristic(
            uuid: string,
            permissions: GattPermissions,
            properties: GattCharacteristicProperties,
            value: ArrayBuffer,
        ): Promise<BluetoothGattCharacteristic>;
        addIncludedService(service: BluetoothGattService): Promise<void>;
    }
    Index

    Properties

    characteristics: BluetoothGattCharacteristic[]
    includedServices: BluetoothGattService[]
    instanceId: number
    isPrimary: boolean
    uuid: string

    Methods