The BluetoothRemoteGATTDescriptor interface of the Web Bluetooth provides a GATT Descriptor, which provides further information a characteristic’s value.
The BluetoothRemoteGATTDescriptor interface of the Web Bluetooth provides a GATT Descriptor, which provides further information a characteristic’s value.
(characteristic this)
Property.
The BluetoothRemoteGATTDescriptor.characteristic read-only property
the bluetooth.BluetoothRemoteGATTCharacteristic
this descriptor
to.
var characteristic = BluetoothRemoteGATTCharacteristic.characteristic
See also: https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTDescriptor/characteristic
Property. The BluetoothRemoteGATTDescriptor.characteristic read-only property the `bluetooth.BluetoothRemoteGATTCharacteristic` this descriptor to. `var characteristic = BluetoothRemoteGATTCharacteristic.characteristic` See also: `https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTDescriptor/characteristic`
(read-value this & args)
Method.
The BluetoothRemoteGATTDescriptor.readValue() method returns
web.Promise
that resolves to an web.ArrayBuffer
holding a
of the value property if it is available and supported. Otherwise
throws an error.
BluetoothRemoteGATTDescriptor.readValue().then(function(value[]) { ... })
See also: https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTDescriptor/readValue
Method. The BluetoothRemoteGATTDescriptor.readValue() method returns `web.Promise` that resolves to an `web.ArrayBuffer` holding a of the value property if it is available and supported. Otherwise throws an error. `BluetoothRemoteGATTDescriptor.readValue().then(function(value[]) { ... })` See also: `https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTDescriptor/readValue`
(set-characteristic! this val)
Property.
The BluetoothRemoteGATTDescriptor.characteristic read-only property
the bluetooth.BluetoothRemoteGATTCharacteristic
this descriptor
to.
var characteristic = BluetoothRemoteGATTCharacteristic.characteristic
See also: https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTDescriptor/characteristic
Property. The BluetoothRemoteGATTDescriptor.characteristic read-only property the `bluetooth.BluetoothRemoteGATTCharacteristic` this descriptor to. `var characteristic = BluetoothRemoteGATTCharacteristic.characteristic` See also: `https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTDescriptor/characteristic`
(set-uuid! this val)
Property.
The BluetoothRemoteGATTDescriptor.uuid read-only property returns UUID of the characteristic descriptor, for example '00002902-0000-1000-8000-00805f9b34fb' theClient Characteristic Configuration descriptor.
var uuid = BluetoothRemoteGATTDescriptor.uuid
See also: https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTDescriptor/uuid
Property. The BluetoothRemoteGATTDescriptor.uuid read-only property returns UUID of the characteristic descriptor, for example '00002902-0000-1000-8000-00805f9b34fb' theClient Characteristic Configuration descriptor. `var uuid = BluetoothRemoteGATTDescriptor.uuid` See also: `https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTDescriptor/uuid`
(set-value! this val)
Property.
The BluetoothRemoteGATTDescriptor.value read-only property returns
web.ArrayBuffer
containing the currently cached descriptor
This value gets updated when the value of the descriptor is read.
var characteristic = BluetoothRemoteGATTDescriptor.characteristic
See also: https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTDescriptor/value
Property. The BluetoothRemoteGATTDescriptor.value read-only property returns `web.ArrayBuffer` containing the currently cached descriptor This value gets updated when the value of the descriptor is read. `var characteristic = BluetoothRemoteGATTDescriptor.characteristic` See also: `https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTDescriptor/value`
(uuid this)
Property.
The BluetoothRemoteGATTDescriptor.uuid read-only property returns UUID of the characteristic descriptor, for example '00002902-0000-1000-8000-00805f9b34fb' theClient Characteristic Configuration descriptor.
var uuid = BluetoothRemoteGATTDescriptor.uuid
See also: https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTDescriptor/uuid
Property. The BluetoothRemoteGATTDescriptor.uuid read-only property returns UUID of the characteristic descriptor, for example '00002902-0000-1000-8000-00805f9b34fb' theClient Characteristic Configuration descriptor. `var uuid = BluetoothRemoteGATTDescriptor.uuid` See also: `https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTDescriptor/uuid`
(value this)
Property.
The BluetoothRemoteGATTDescriptor.value read-only property returns
web.ArrayBuffer
containing the currently cached descriptor
This value gets updated when the value of the descriptor is read.
var characteristic = BluetoothRemoteGATTDescriptor.characteristic
See also: https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTDescriptor/value
Property. The BluetoothRemoteGATTDescriptor.value read-only property returns `web.ArrayBuffer` containing the currently cached descriptor This value gets updated when the value of the descriptor is read. `var characteristic = BluetoothRemoteGATTDescriptor.characteristic` See also: `https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTDescriptor/value`
(write-value this & args)
Method.
The BluetoothRemoteGATTDescriptor.writeValue() method sets the
property to the bytes contained in an web.ArrayBuffer
and returns
web.Promise
.
BluetoothRemoteGATTDescriptor.writeValue(array[]).then(function() { ... })
See also: https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTDescriptor/writeValue
Method. The BluetoothRemoteGATTDescriptor.writeValue() method sets the property to the bytes contained in an `web.ArrayBuffer` and returns `web.Promise`. `BluetoothRemoteGATTDescriptor.writeValue(array[]).then(function() { ... })` See also: `https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTDescriptor/writeValue`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close