Changes

Jump to: navigation, search

B2G/Bluetooth/WebBluetooth-v2/BluetoothAdapter

735 bytes added, 03:46, 17 November 2014
Properties
* [[B2G/Bluetooth/WebBluetooth-v2/BluetoothAdapter#discovering|BluetoothAdapter.discovering]]
* [[B2G/Bluetooth/WebBluetooth-v2/BluetoothAdapter#pairingReqs|BluetoothAdapter.pairingReqs]]
* [[B2G/Bluetooth/WebBluetooth-v2/BluetoothAdapter#gattServer|BluetoothAdapter.gattServer]]
=== state ===
// notify user of just-work pairing
}
}
 
=== gattServer ===
; Description
: The gattServer property is object to conduct GATT server operations on local bluetooth adapter. Applications have to call openGattServer() to update this property.
 
; Value type
: [[B2G/Bluetooth/WebBluetooth-v2/BluetoothGattServer#BluetoothGattServer|BluetoothGattServer]]
 
; Default value
: Null pointer
 
; Sample
var adapter = navigator.mozBluetooth.defaultAdapter;
if (adapter) {
adapter.openGattServer().then ( function onResolve(gattServer) {
console.log("Resolved with gatt server");
}, function onReject(aReason) {
console.log("Rejected with this reason: " + aReason);
});
}
Confirm
891
edits

Navigation menu