From 26db2cfcf931727a4387585fd50503b66570c542 Mon Sep 17 00:00:00 2001 From: Mossito Date: Mon, 20 Mar 2017 21:11:37 +0100 Subject: [PATCH] feat(ble): add readRSSI method (#1189) --- src/plugins/ble.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/plugins/ble.ts b/src/plugins/ble.ts index 770287b7a..99882d67b 100644 --- a/src/plugins/ble.ts +++ b/src/plugins/ble.ts @@ -423,4 +423,15 @@ export class BLE { @Cordova() static enable(): Promise { return; } + /** + * Read the RSSI value on the device connection. + * + * @param {string} deviceId UUID or MAC address of the peripheral + * + *@returns {Promise} + */ + @Cordova() + static readRSSI( + deviceId: string, + ): Promise { return; } }