← Back to BluetoothEmulation domain

BluetoothEmulation.removeCharacteristic

Removes the characteristic respresented by |characteristicId| from the simulated central.

Domain: BluetoothEmulation experimental

Parameters

NameTypeDescription
characteristicIdstring

Example Request

{
  "id": 1,
  "method": "BluetoothEmulation.removeCharacteristic",
  "params": {
    "characteristicId": "characteristicId-value"
  }
}

Example Response

{
  "id": 1,
  "result": {}
}

Usage in Node.js

const result = await send('BluetoothEmulation.removeCharacteristic', {"characteristicId": "characteristicId-value"});
console.log(result);