options to disable bluetooth and/or clean bonded (paired) devices (#758)

Signed-off-by: Jussi Vatjus-Anttila <jussiva@gmail.com>
This commit is contained in:
Jussi Vatjus-Anttila
2024-01-31 00:43:23 +02:00
committed by GitHub
parent 806bfa4087
commit a6b5f18941
5 changed files with 76 additions and 3 deletions

View File

@@ -704,6 +704,20 @@ module.exports = syrup.serial()
})
}
plugin.cleanBluetoothBonds = function() {
return runServiceCommand(
apk.wire.MessageType.DO_CLEAN_BLUETOOTH_BONDED_DEVICES
, new apk.wire.DoCleanBluetoothBondedDevicesRequest()
)
.timeout(10000)
.then(function(data) {
var response = apk.wire.DoCleanBluetoothBondedDevicesResponse.decode(data)
if (!response.success) {
throw new Error('Unable to clean Bluetooth bonded devices')
}
})
}
plugin.getBluetoothStatus = function() {
return runServiceCommand(
apk.wire.MessageType.GET_BLUETOOTH_STATUS