How to use the react-native-ble-manager.stopNotification function in react-native-ble-manager

To help you get started, we’ve selected a few react-native-ble-manager examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github zhanguangao / react-native-ble-manager-demo / demo for v3.2.1 deprecated / app / BleManager.js View on Github external
return new Promise( (resolve, reject) =>{
	        BleManager.stopNotification(this.peripheralId, this.nofityServiceUUID, this.nofityCharacteristicUUID)
	            .then(() => {
	                console.log('stopNotification success!');
		            resolve();
	            })
	            .catch((error) => {
	                console.log('stopNotification error:',error);
		            reject(error);
	            });
	    });
    }
github zhanguangao / react-native-ble-manager-demo / src / BleModule.js View on Github external
stopNotification(index = 0) { 
        BleManager.stopNotification(this.peripheralId, this.nofityServiceUUID[index], this.nofityCharacteristicUUID[index])
            .then(() => {
                console.log('stopNotification success!');
                resolve();
            })
            .catch((error) => {
                console.log('stopNotification error:',error);
                reject(error);
            });
    }