Lines Matching refs:BLE

4 …overy and description services for BLE protocol. It defines how ATT attributes are organized and e…
6 …e data locally and provides data access to a remote GATT client paired via BLE. A GATT client (ref…
22 | connect() | Connects the client to the remote BLE device. …
23 | disconnect() | Disconnects the client from the remote BLE device. …
25 | getDeviceName() | Obtains the name of the remote BLE device for the cl…
26 | getServices() | Obtains all services of the remote BLE device for th…
27 … | Reads a characteristic value of a service of the remote BLE device. …
28 … | Reads the descriptor contained in a characteristic of the remote BLE device. …
29 | writeCharacteristicValue() | Writes a characteristic value to the remote BLE devi…
30 | writeDescriptorValue() | Writes binary data to a descriptor of the remote BLE
31 … | Obtains the received signal strength indication (RSSI) of the peer BLE device. This API ca…
32 …mission unit (MTU) that can be transmitted between the client and its peer BLE device. This API ca…
33 …n. The client will be notified when the characteristic value of the remote BLE device changes. …
34 …. The client will be indicated when the characteristic value of the remote BLE device changes. …
35 | on(type: 'BLECharacteristicChange') | Subscribes to the BLE characteristic changes. The cl…
36 | off(type: 'BLECharacteristicChange') | Unsubscribes from the BLE characteristic changes. …
37 | on(type: 'BLEConnectionStateChange') | Subscribes to the BLE connection state changes for t…
38 | off(type: 'BLEConnectionStateChange') | Unsubscribes from the BLE connection state changes f…
54 | on(type: 'connectionStateChange') | Subscribes to the BLE connection state changes for t…
55 | off(type: 'connectionStateChange') | Unsubscribes from the BLE connection state changes f…
199 …blic startConnect(peerDevice: string) {// The peer device is generally discovered through BLE scan.