Skip to content

Commit 22c32ff

Browse files
authored
Add missing info about descriptors (#425)
* Add missing info about descriptors * Add a bit of information about descriptors to reference
1 parent 7b20f6f commit 22c32ff

File tree

2 files changed

+105
-8
lines changed

2 files changed

+105
-8
lines changed

README.md

+12-5
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ The library is organised around a few base entities, which are:
5757
- **Peripheral**
5858
- **Service**
5959
- **Characteristic**
60+
* **Descriptor**
6061

6162
You have to create an instance _BleManager_ and initialise underlying native resources.
6263
Using that instance you then obtain an instance of _Peripheral_,
@@ -199,12 +200,18 @@ service.writeCharacteristic(
199200
characteristic.write(Uint8List.fromList([0]), false); //returns void
200201
```
201202

202-
Monitoring or reading a characteristic from _Peripheral_/_Service_ level
203+
Monitoring or reading a characteristic from _Peripheral_/_Service_ level
203204
return _CharacteristicWithValue_ object, which is _Characteristic_ with additional `Uint8List value` property.
204-
205-
## Facilitated by Frontside
206-
207-
[Frontside](https://github.com/thefrontside) provided architectural advice and financial support for this library on behalf of [Resideo](https://github.com/resideo).
205+
206+
### Descriptor operations
207+
208+
List of descriptors from a single characteristic can be obtained in a similar fashion to a list of characteristics from a single service, either from Peripheral, Service or Characteristic object.
209+
Descriptors can be read/written from Peripheral, Service or Characteristic by supplying necessary UUIDs, or from Descriptor object.
210+
211+
**Note:** to enable monitoring of characteristic you should use `characteristic.monitor()` or `(peripheral/service).monitorCharacteristic()` instead of changing the value of the underlying descriptor yourself.
212+
213+
## Facilitated by Frontside
214+
[Frontside](https://github.com/thefrontside) provided architectural advice and financial support for this library on behalf of [Resideo](https://github.com/resideo).
208215

209216
## Maintained by
210217

REFERENCE.md

+93-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Overview
2+
23
The library is organised around a few base entities, which are:
34
* **BleManager**
45
* **Peripheral**
@@ -7,25 +8,34 @@ The library is organised around a few base entities, which are:
78

89
The basic idea is to create an instance of **BleManager**, use it to create/release native clients of the underlying libraries, scan for peripherals and then operate on **Peripheral**.
910

11+
1012
# BleManager
13+
1114
This entity serves as the library's entry point. It doesn't track any state, so it is safe to create as many of those as you wish.
1215
All of the following methods belong to BleManager instance.
16+
1317
## Managing native resources
18+
1419
```dart
1520
Future<void> createClient({
1621
String restoreStateIdentifier,
1722
RestoreStateAction restoreStateAction,
1823
});
1924
```
25+
2026
Creates native adapters for handling BLE. *This method has to be called before you can begin using the library.*
2127
Both parameters are iOS-specific and handle restoration of already bonded devices, eg. after a crash.
2228

2329
Method will return error if an instance of native BleAdapter has already been created.
30+
2431
```dart
2532
Future<void> destroyClient();
2633
```
34+
2735
Releases native resources. Should be called once there's no further need for BLE capabilities.
36+
2837
## Scanning for peripherals
38+
2939
```dart
3040
Stream<ScanResult> startPeripheralScan({
3141
int scanMode,
@@ -34,6 +44,7 @@ Releases native resources. Should be called once there's no further need for BLE
3444
bool allowDuplicates,
3545
});
3646
```
47+
3748
`scanMode` and `callbackType` are Android-specific. [More information in Android documentation](https://developer.android.com/reference/android/bluetooth/le/ScanSettings)
3849
`allowDuplicates` is iOS-specific. [More information in iOS documentation](https://developer.apple.com/documentation/corebluetooth/cbcentralmanagerscanoptionallowduplicateskey)
3950
`uuids` is used to filter peripherals to only return those containing services with specified UUIDs.
@@ -43,11 +54,15 @@ Returns a stream of objects containing advertisement data of the peripheral and
4354
```dart
4455
Future<void> stopDeviceScan();
4556
```
57+
4658
Ends peripheral scan.
59+
4760
## Managing log level
61+
4862
```dart
4963
Future<void> setLogLevel(LogLevel logLevel);
5064
```
65+
5166
Sets log level of underlying native libraries. Possible values are:
5267
* `none`
5368
* `verbose`
@@ -59,39 +74,54 @@ Sets log level of underlying native libraries. Possible values are:
5974
```dart
6075
Future<LogLevel> logLevel();
6176
```
77+
6278
Returns current log level of underlying native libraries.
79+
6380
## Managing radio state
81+
6482
```dart
6583
Future<void> enableRadio({String transactionId});
6684
```
85+
6786
Turns on system's Bluetooth Adapter.
6887
Android-only feature. This operation will fail immediately on iOS.
6988

7089
```dart
7190
Future<void> disableRadio({String transactionId});
7291
```
92+
7393
Turns off system's Bluetooth adapter.
7494
Android-only feature. This operation will fail immediately on iOS.
7595

7696
```dart
7797
Future<BluetoothState> bluetoothState();
7898
```
99+
79100
Return the current state of system's Bluetooth adapter.
80101

81102
```dart
82103
Stream<BluetoothState> observeBluetoothState({bool emitCurrentValue = true});
83104
```
105+
84106
Returns a stream of system's Bluetooth adapter state changes. By default emits current value first; behaviour can be overridden by passing `false` to the optional argument.
107+
85108
## Listing known devices
109+
86110
```dart
87111
Future<List<Peripheral>> knownDevices(List<String> peripheralIdentifiers);
88112
```
113+
89114
Return a list of Peripherals that have been scanned and match any of the supplied identifiers. Returns empty list if an empty list is passed.
115+
90116
```dart
91117
Future<List<Peripheral>> connectedDevices(List<String> serviceUUIDs);
118+
92119
```
120+
93121
Returns a list of connected Peripherals that have at least one service with UUID matching any of the supplied UUIDs. Returns empty list if an empty list is passed.
122+
94123
## Cancelling asynchronous operations
124+
95125
```dart
96126
Future<void> cancelTransaction(String transactionId);
97127
```
@@ -103,9 +133,12 @@ The cancelled operation will still be completed (perhaps with error), but the us
103133
_(Read more about [transactions](https://github.com/Polidea/FlutterBleLib/#transactions))_
104134

105135
# Peripheral
136+
106137
Object representing a peripheral. Allows for managing connection, discovery and serves as a shortcut to characteristic operations, if the user knows the UUIDs of both service and characteristic.
107138
All of the following methods belong to Peripheral instance.
139+
108140
## Connection
141+
109142
```dart
110143
Future<void> connect(
111144
{bool isAutoConnect = false,
@@ -122,70 +155,97 @@ Attempts to connect to the peripheral.
122155
`refreshGatt` forces GATT to refresh its cache; Android-specific.
123156

124157
If connection has not been established by `timeout`, the operation fails. `timeout` defaults to 30 seconds.
158+
125159
```dart
126160
Stream<PeripheralConnectionState> observeConnectionState(
127161
{bool emitCurrentValue = false,
128162
bool completeOnDisconnect = false});
129163
```
164+
130165
Returns a stream containing changes to the connection state. By default doesn't emit current state, nor terminates the stream after disconnecting.
131166
**Note:** due ambiguities concerning `disconnecting` state, current implementation never emits `disconnecting`, only `connecting`, `connected`, `disconnected`.
132167

133168
```dart
134169
Future<bool> isConnected();
135170
```
171+
136172
Returns true if the peripheral is currently connected.
137173

138174
```dart
139175
Future<void> disconnectOrCancelConnection();
140176
```
177+
141178
Terminates connection or any attempt to connect.
142-
## Obtaining services and characteristics
179+
180+
## Obtaining services, characteristics and descriptors
181+
143182
```dart
144183
Future<void> discoverAllServicesAndCharacteristics({String transactionId});
145184
```
185+
146186
Runs the discovery process, caching all discovered services and characteristics in the native parts.
147187
**Must be run before `services()`, `characteristics()` and any operations on characteristics**
148188
Operation is cancellable, meaning the operation's result in Dart can be discarded.
189+
149190
```dart
150191
Future<List<Service>> services();
151192
```
152-
Returns list of all discovered services for the peripheral.
193+
194+
Returns a list of all discovered services for the peripheral.
153195
Fails if discovery has not been done.
154196

155197
```dart
156198
Future<List<Characteristic>> characteristics(String servicedUuid);
157199
```
158-
Returns list of all discovered characteristics for the specified service of the peripheral.
200+
201+
Returns a list of all discovered characteristics for the specified service of the peripheral.
159202
Fails if discovery has not been done.
203+
204+
```dart
205+
Future<List<Descriptor>> descriptorsForCharacteristic(
206+
String serviceUuid,
207+
String characteristicUuid,
208+
);
209+
```
210+
211+
Returns a list of all descriptors of the specified characteristic. Returns first match encountered, if there are UUID conflicts.
212+
160213
## RSSI and MTU
214+
161215
```dart
162216
Future<int> rssi({String transactionId}) {
163217
return _manager.rssi(this, transactionId);
164218
}
165219
```
220+
166221
Reads current RSSI if the device is connected.
222+
167223
```dart
168224
Future<int> requestMtu(int mtu, {String transactionId}) {
169225
return _manager.requestMtu(this, mtu, transactionId);
170226
}
171227
```
228+
172229
Request peripheral to set a different MTU. On iOS only returns the current value.
173230
Returns the MTU set by peripheral after the request.
174231

175232
MTU can be requested only once in the lifetime of the connection, meaning this call will fail if it was set prior by either passing a valid value to `connect(requestMtu: int)` or calling this function.
176233

177234
## Characteristic convenience methods
235+
178236
Finds first service with specified UUID and first characteristic
179237
in said service with specified UUID and then performs the requested operation.
180238
Following operations will be discussed in details in **Characteristic** section.
181239
`CharacteristicWithValue` object is a `Characteristic` with additional `Uint8List value` property.
240+
182241
```dart
183242
Future<CharacteristicWithValue> readCharacteristic(
184243
String serviceUUID,
185244
String characteristicUUID, {
186245
String transactionId,
187246
});
188247
```
248+
189249
```dart
190250
Future<Characteristic> writeCharacteristic(
191251
String serviceUUID,
@@ -195,23 +255,31 @@ Future<CharacteristicWithValue> readCharacteristic(
195255
String transactionId,
196256
});
197257
```
258+
198259
```dart
199260
Stream<CharacteristicWithValue> monitorCharacteristic(
200261
String serviceUUID,
201262
String characteristicUUID, {
202263
String transactionId,
203264
});
204265
```
266+
205267
# Service
268+
206269
Object representing a unique service associated with unique peripheral, ensured by the internal mechanisms of MultiPlatformBleAdapter.
207270
For ease of use exposes property `peripheral`.
208271
All of the following methods belong to Service instance.
272+
209273
## Obtaining characteristics
274+
210275
```dart
211276
Future<List<Characteristic>> characteristics();
212277
```
278+
213279
Returns a list of characteristics this service contains.
280+
214281
## Characteristic convenience methods
282+
215283
Following operations will be discussed in details **Characteristic** section.
216284
Finds first characteristic with specified UUID and then performs the requested operation.
217285
`CharacteristicWithValue` object is a `Characteristic` with additional `Uint8List value` property.
@@ -224,10 +292,12 @@ Finds first characteristic with specified UUID and then performs the requested o
224292
String transactionId,
225293
});
226294
```
295+
227296
```dart
228297
Future<CharacteristicWithValue> readCharacteristic(String characteristicUUID,
229298
{String transactionId});
230299
```
300+
231301
```dart
232302
Stream<CharacteristicWithValue> monitorCharacteristic(
233303
String characteristicUUID, {
@@ -236,6 +306,7 @@ Finds first characteristic with specified UUID and then performs the requested o
236306
```
237307

238308
# Characteristic
309+
239310
Object representing unique characteristic inside a unique service associated with unique peripheral, all ensured by the internal mechanisms of MultiPlatformBleAdapter.
240311
For ease of use exposes property `service`.
241312
Contains following boolean properties:
@@ -251,16 +322,35 @@ All of the following methods belong to Characteristic instance.
251322
```dart
252323
Future<Uint8List> read({String transactionId});
253324
```
325+
254326
Reads the value of the characteristic. Operation is cancellable, meaning the operation's result in Dart can be discarded.
327+
255328
```dart
256329
Future<void> write(
257330
Uint8List bytes,
258331
bool withResponse, {
259332
String transactionId,
260333
});
261334
```
335+
262336
Writes value to this characteristic. It is user's responsibility to choose whether write should be done with or without response.
337+
263338
```dart
264339
Stream<Uint8List> monitor({String transactionId});
265340
```
341+
266342
Operation is cancellable, which allows the user to terminate the notifications from the peripheral for this characteristic.
343+
344+
# Descriptor
345+
346+
Object representing unique descriptor inside unique characteristic inside a unique service associated with unique peripheral, all ensured by the internal mechanisms of MultiPlatformBleAdapter.
347+
348+
For ease of use exposes `characteristic` property.
349+
350+
```dart
351+
Future<Uint8List> read({String transactionId});
352+
```
353+
354+
```dart
355+
Future<void> write(Uint8List value, {String transactionId})
356+
```

0 commit comments

Comments
 (0)