kaios-types
    Preparing search index...

    Interface BluetoothGattCharacteristic

    bluetooth

    interface BluetoothGattCharacteristic {
        descriptors: BluetoothGattDescriptor[];
        instanceId: number;
        permissions: GattPermissions;
        properties: GattCharacteristicProperties;
        service: BluetoothGattService;
        uuid: string;
        value: ArrayBuffer | null;
        addDescriptor(
            uuid: string,
            permissions: GattPermissions,
            value: ArrayBuffer,
        ): Promise<BluetoothGattDescriptor>;
        readValue(): Promise<ArrayBuffer>;
        startNotifications(): Promise<void>;
        stopNotifications(): Promise<void>;
        writeValue(value: ArrayBuffer): Promise<void>;
    }
    Index

    Properties

    instanceId: number
    permissions: GattPermissions
    uuid: string
    value: ArrayBuffer | null

    Methods