You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Monitoring or reading a characteristic from _Peripheral_/_Service_ level
203
+
Monitoring or reading a characteristic from _Peripheral_/_Service_ level
203
204
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).
Copy file name to clipboardexpand all lines: REFERENCE.md
+93-3
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,5 @@
1
1
# Overview
2
+
2
3
The library is organised around a few base entities, which are:
3
4
***BleManager**
4
5
***Peripheral**
@@ -7,25 +8,34 @@ The library is organised around a few base entities, which are:
7
8
8
9
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**.
9
10
11
+
10
12
# BleManager
13
+
11
14
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.
12
15
All of the following methods belong to BleManager instance.
16
+
13
17
## Managing native resources
18
+
14
19
```dart
15
20
Future<void> createClient({
16
21
String restoreStateIdentifier,
17
22
RestoreStateAction restoreStateAction,
18
23
});
19
24
```
25
+
20
26
Creates native adapters for handling BLE. *This method has to be called before you can begin using the library.*
21
27
Both parameters are iOS-specific and handle restoration of already bonded devices, eg. after a crash.
22
28
23
29
Method will return error if an instance of native BleAdapter has already been created.
30
+
24
31
```dart
25
32
Future<void> destroyClient();
26
33
```
34
+
27
35
Releases native resources. Should be called once there's no further need for BLE capabilities.
36
+
28
37
## Scanning for peripherals
38
+
29
39
```dart
30
40
Stream<ScanResult> startPeripheralScan({
31
41
int scanMode,
@@ -34,6 +44,7 @@ Releases native resources. Should be called once there's no further need for BLE
34
44
bool allowDuplicates,
35
45
});
36
46
```
47
+
37
48
`scanMode` and `callbackType` are Android-specific. [More information in Android documentation](https://developer.android.com/reference/android/bluetooth/le/ScanSettings)
38
49
`allowDuplicates` is iOS-specific. [More information in iOS documentation](https://developer.apple.com/documentation/corebluetooth/cbcentralmanagerscanoptionallowduplicateskey)
39
50
`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
43
54
```dart
44
55
Future<void> stopDeviceScan();
45
56
```
57
+
46
58
Ends peripheral scan.
59
+
47
60
## Managing log level
61
+
48
62
```dart
49
63
Future<void> setLogLevel(LogLevel logLevel);
50
64
```
65
+
51
66
Sets log level of underlying native libraries. Possible values are:
52
67
*`none`
53
68
*`verbose`
@@ -59,39 +74,54 @@ Sets log level of underlying native libraries. Possible values are:
59
74
```dart
60
75
Future<LogLevel> logLevel();
61
76
```
77
+
62
78
Returns current log level of underlying native libraries.
79
+
63
80
## Managing radio state
81
+
64
82
```dart
65
83
Future<void> enableRadio({String transactionId});
66
84
```
85
+
67
86
Turns on system's Bluetooth Adapter.
68
87
Android-only feature. This operation will fail immediately on iOS.
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.
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.
@@ -103,9 +133,12 @@ The cancelled operation will still be completed (perhaps with error), but the us
103
133
_(Read more about [transactions](https://github.com/Polidea/FlutterBleLib/#transactions))_
104
134
105
135
# Peripheral
136
+
106
137
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.
107
138
All of the following methods belong to Peripheral instance.
139
+
108
140
## Connection
141
+
109
142
```dart
110
143
Future<void> connect(
111
144
{bool isAutoConnect = false,
@@ -122,70 +155,97 @@ Attempts to connect to the peripheral.
122
155
`refreshGatt` forces GATT to refresh its cache; Android-specific.
123
156
124
157
If connection has not been established by `timeout`, the operation fails. `timeout` defaults to 30 seconds.
Returns a stream containing changes to the connection state. By default doesn't emit current state, nor terminates the stream after disconnecting.
131
166
**Note:** due ambiguities concerning `disconnecting` state, current implementation never emits `disconnecting`, only `connecting`, `connected`, `disconnected`.
132
167
133
168
```dart
134
169
Future<bool> isConnected();
135
170
```
171
+
136
172
Returns true if the peripheral is currently connected.
137
173
138
174
```dart
139
175
Future<void> disconnectOrCancelConnection();
140
176
```
177
+
141
178
Terminates connection or any attempt to connect.
142
-
## Obtaining services and characteristics
179
+
180
+
## Obtaining services, characteristics and descriptors
Request peripheral to set a different MTU. On iOS only returns the current value.
173
230
Returns the MTU set by peripheral after the request.
174
231
175
232
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.
176
233
177
234
## Characteristic convenience methods
235
+
178
236
Finds first service with specified UUID and first characteristic
179
237
in said service with specified UUID and then performs the requested operation.
180
238
Following operations will be discussed in details in **Characteristic** section.
181
239
`CharacteristicWithValue` object is a `Characteristic` with additional `Uint8List value` property.
@@ -236,6 +306,7 @@ Finds first characteristic with specified UUID and then performs the requested o
236
306
```
237
307
238
308
# Characteristic
309
+
239
310
Object representing unique characteristic inside a unique service associated with unique peripheral, all ensured by the internal mechanisms of MultiPlatformBleAdapter.
240
311
For ease of use exposes property `service`.
241
312
Contains following boolean properties:
@@ -251,16 +322,35 @@ All of the following methods belong to Characteristic instance.
251
322
```dart
252
323
Future<Uint8List> read({String transactionId});
253
324
```
325
+
254
326
Reads the value of the characteristic. Operation is cancellable, meaning the operation's result in Dart can be discarded.
327
+
255
328
```dart
256
329
Future<void> write(
257
330
Uint8List bytes,
258
331
bool withResponse, {
259
332
String transactionId,
260
333
});
261
334
```
335
+
262
336
Writes value to this characteristic. It is user's responsibility to choose whether write should be done with or without response.
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.
0 commit comments