The BluetoothRemoteGattCharacteristic interface of the Web Bluetooth represents a GATT Characteristic, which is a basic data element provides further information about a peripheral’s service.
The BluetoothRemoteGattCharacteristic interface of the Web Bluetooth represents a GATT Characteristic, which is a basic data element provides further information about a peripheral’s service.
(get-descriptor this bluetooth-descriptor-uuid)
Method.
[Experimental]
The BluetoothRemoteGATTCharacteristic.getDescriptor() method
a js.Promise
that resolves to the first BluetoothGATTDescriptor
a given descriptor UUID.
BluetoothRemoteGATTCharacteristic.getDescriptor(bluetoothDescriptorUUID).then(function(bluetoothGATTDescriptor) { ... })
See also: https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/getDescriptor
Method. [Experimental] The BluetoothRemoteGATTCharacteristic.getDescriptor() method a `js.Promise` that resolves to the first `BluetoothGATTDescriptor` a given descriptor UUID. `BluetoothRemoteGATTCharacteristic.getDescriptor(bluetoothDescriptorUUID).then(function(bluetoothGATTDescriptor) { ... })` See also: `https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/getDescriptor`
(get-descriptors this bluetooth-descriptor-uuid)
Method.
[Experimental]
The BluetoothRemoteGATTCharacteristic.getDescriptors() method
a js.Promise
that resolves to an js.Array
of all BluetoothGATTDescriptor
for a given descriptor UUID.
BluetoothRemoteGATTCharacteristic.getDescriptors(bluetoothDescriptorUUID).then(function(bluetoothGATTDescriptors[]) { ... })
See also: https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/getDescriptors
Method. [Experimental] The BluetoothRemoteGATTCharacteristic.getDescriptors() method a `js.Promise` that resolves to an `js.Array` of all `BluetoothGATTDescriptor` for a given descriptor UUID. `BluetoothRemoteGATTCharacteristic.getDescriptors(bluetoothDescriptorUUID).then(function(bluetoothGATTDescriptors[]) { ... })` See also: `https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/getDescriptors`
(properties this)
Property.
[Read Only] [Experimental]
The BluetoothRemoteGATTCharacteristic.properties read-only property
a web.bluetooth.BluetoothCharacteristicProperties
instance
the properties of this characteristic.
var properties = BluetoothRemoteGATTCharacteristic.properties
See also: https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/properties
Property. [Read Only] [Experimental] The BluetoothRemoteGATTCharacteristic.properties read-only property a `web.bluetooth.BluetoothCharacteristicProperties` instance the properties of this characteristic. `var properties = BluetoothRemoteGATTCharacteristic.properties` See also: `https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/properties`
(read-value this & args)
Method.
[Experimental]
The BluetoothRemoteGATTCharacteristic.readValue() method returns
js.Promise
that resolves to a js.DataView
holding a duplicate
the value property if it is available and supported. Otherwise
throws an error.
BluetoothRemoteGATTCharacteristic.readValue().then(function(dataView) { ... })
See also: https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/readValue
Method. [Experimental] The BluetoothRemoteGATTCharacteristic.readValue() method returns `js.Promise` that resolves to a `js.DataView` holding a duplicate the value property if it is available and supported. Otherwise throws an error. `BluetoothRemoteGATTCharacteristic.readValue().then(function(dataView) { ... })` See also: `https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/readValue`
(service this)
Property.
[Read Only] [Experimental]
The BluetoothRemoteGATTCharacteristic.service read-only property
the BluetoothGATTService
this characteristic belongs to.
var bluetoothRemoteGATTServiceInstance = BluetoothRemoteGATTCharacteristic.service
See also: https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/service
Property. [Read Only] [Experimental] The BluetoothRemoteGATTCharacteristic.service read-only property the `BluetoothGATTService` this characteristic belongs to. `var bluetoothRemoteGATTServiceInstance = BluetoothRemoteGATTCharacteristic.service` See also: `https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/service`
(start-notifications this & args)
Method.
[Experimental]
The BluetoothRemoteGATTCharacteristic.startNotifications() method
a js.Promise
to the BluetoothRemoteGATTCharacteristic instance
there is an active notification on it.
BluetoothRemoteGATTCharacteristic.startNotifications().then(function(BluetoothRemoteGATTCharacteristic) { ... })
See also: https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/startNotifications
Method. [Experimental] The BluetoothRemoteGATTCharacteristic.startNotifications() method a `js.Promise` to the BluetoothRemoteGATTCharacteristic instance there is an active notification on it. `BluetoothRemoteGATTCharacteristic.startNotifications().then(function(BluetoothRemoteGATTCharacteristic) { ... })` See also: `https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/startNotifications`
(stop-notifications this & args)
Method.
[Experimental]
The BluetoothRemoteGATTCharacteristic.stopNotifications() method
a js.Promise
to the BluetoothRemoteGATTCharacteristic instance
there is no longer an active notification on it.
BluetoothRemoteGATTCharacteristic.stopNotifications().then(function(BluetoothRemoteGATTCharacteristic) { ... })
See also: https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/stopNotifications
Method. [Experimental] The BluetoothRemoteGATTCharacteristic.stopNotifications() method a `js.Promise` to the BluetoothRemoteGATTCharacteristic instance there is no longer an active notification on it. `BluetoothRemoteGATTCharacteristic.stopNotifications().then(function(BluetoothRemoteGATTCharacteristic) { ... })` See also: `https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/stopNotifications`
(uuid this)
Property.
[Read Only] [Experimental]
The BluetoothRemoteGATTCharacteristic.uuid read-only property
web.DOMString
containing the UUID of the characteristic, for
'00002a37-0000-1000-8000-00805f9b34fb' for the Heart Rate Measurement
var uuid = BluetoothRemoteGATTCharacteristic.uuid
See also: https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/uuid
Property. [Read Only] [Experimental] The BluetoothRemoteGATTCharacteristic.uuid read-only property `web.DOMString` containing the UUID of the characteristic, for '00002a37-0000-1000-8000-00805f9b34fb' for the Heart Rate Measurement `var uuid = BluetoothRemoteGATTCharacteristic.uuid` See also: `https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/uuid`
(value this)
Property.
[Read Only] [Experimental]
The BluetoothRemoteGATTCharacteristic.value read-only property currently cached characteristic value. This value gets updated the value of the characteristic is read or updated via a notification indication.
var value = BluetoothRemoteGATTCharacteristic.value
See also: https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/value
Property. [Read Only] [Experimental] The BluetoothRemoteGATTCharacteristic.value read-only property currently cached characteristic value. This value gets updated the value of the characteristic is read or updated via a notification indication. `var value = BluetoothRemoteGATTCharacteristic.value` See also: `https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/value`
(write-value this value)
Method.
[Experimental]
The BluetoothRemoteGATTCharacteristic.writeValue() method sets
value property to the bytes contained in an js.ArrayBuffer
returns a js.Promise
.
BluetoothRemoteGATTCharacteristic.writeValue(value).then(function() { ... })
See also: https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/writeValue
Method. [Experimental] The BluetoothRemoteGATTCharacteristic.writeValue() method sets value property to the bytes contained in an `js.ArrayBuffer` returns a `js.Promise`. `BluetoothRemoteGATTCharacteristic.writeValue(value).then(function() { ... })` See also: `https://developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/writeValue`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close