问题描述:
在蓝牙中,write特征值带的属性中有write with response和write without response,一般情况下设备这2种属性都具备,而
wx.writeBLECharacteristicValue(Object object)中没有可选的参数,调用API后,在IOS中使用了write with response,而Android中则使用了write without response,使用write with response进行发送后,导致了速度变慢,在数据量过大时,发送时间会很长。
需求:
在wx.writeBLECharacteristicValue(Object object)参数中传入一个boolean参数,让用户可以选择使用哪种方式发送。