menu
BluetoothGattWriteMode
import { BluetoothGattWriteMode } from "destack:device/binding";
Bluetooth GATT write mode.
1export enum BluetoothGattWriteMode {2 WithResponse = 1,3 WithoutResponse = 2,4}Variants
WithResponse = 1Write with an ATT response.
WithoutResponse = 2Write without an ATT response.