BluetoothEmulation.removeCharacteristicRemoves the characteristic respresented by |characteristicId| from the simulated central.
| Name | Type | Description |
|---|---|---|
characteristicId | string |
{
"id": 1,
"method": "BluetoothEmulation.removeCharacteristic",
"params": {
"characteristicId": "characteristicId-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('BluetoothEmulation.removeCharacteristic', {"characteristicId": "characteristicId-value"});
console.log(result);