opper
    Preparing search index...

    Interface BluetoothLowEnergeCharacteristicProperties

    interface BluetoothLowEnergeCharacteristicProperties {
        indicate: boolean;
        notify: boolean;
        read: boolean;
        write: boolean;
        writeWithoutResponse?: boolean;
        writeWithResponse?: boolean;
    }
    Index

    Properties

    indicate: boolean

    该特征是否支持 indicate 操作

    notify: boolean

    该特征是否支持 notify 操作

    read: boolean

    该特征是否支持 read 操作

    write: boolean

    该特征是否支持 write 操作

    writeWithoutResponse?: boolean

    该特征是否支持无回复写操作

    writeWithResponse?: boolean

    该特征是否支持有回复写操作