2015-03-23 10:27:00 +03:00
|
|
|
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2015-08-24 11:58:13 +03:00
|
|
|
/**
|
|
|
|
* BluetoothGattDescriptor could be in the server role as a descriptor provided
|
|
|
|
* by a local GATT server, or in the client role as a descriptor provided by a
|
|
|
|
* remote GATT server.
|
|
|
|
*/
|
2015-07-14 05:25:26 +03:00
|
|
|
[CheckAnyPermissions="bluetooth"]
|
2015-03-23 10:27:00 +03:00
|
|
|
interface BluetoothGattDescriptor
|
|
|
|
{
|
|
|
|
readonly attribute BluetoothGattCharacteristic characteristic;
|
|
|
|
readonly attribute DOMString uuid;
|
2015-04-16 11:44:58 +03:00
|
|
|
readonly attribute ArrayBuffer? value;
|
2015-08-24 11:58:13 +03:00
|
|
|
[Cached, Constant]
|
|
|
|
readonly attribute GattPermissions permissions;
|
2015-04-16 11:44:58 +03:00
|
|
|
|
2015-09-23 09:16:05 +03:00
|
|
|
/**
|
|
|
|
* Read or write the value of this descriptor.
|
|
|
|
*
|
|
|
|
* If this descriptor is in the client role, the value will be read from or
|
|
|
|
* written to the remote GATT server. Otherwise, the local value will be
|
|
|
|
* read/written.
|
|
|
|
*/
|
2015-04-16 11:44:58 +03:00
|
|
|
[NewObject]
|
|
|
|
Promise<ArrayBuffer> readValue();
|
|
|
|
[NewObject]
|
|
|
|
Promise<void> writeValue(ArrayBuffer value);
|
2015-03-23 10:27:00 +03:00
|
|
|
};
|