我正在使用BLE的Android應用程序中工作。我想寫入我連接到的設備服務的特徵。使用藍牙低功耗寫入
我的功能是這樣的:
public void writeCharacteristic(BluetoothGattCharacteristic characteristic,
boolean enabled, String text) {
if (mBluetoothAdapter == null || mBluetoothGatt == null) {
Log.w(TAG, "BluetoothAdapter not initialized");
return;
}
characteristic.setValue("7");
boolean status = mBluetoothGatt.writeCharacteristic(characteristic);
}
我不爲什麼值未特性裏面寫。 我按照此鏈接中的步驟操作: write with BLE
有人知道我的代碼爲什麼不起作用嗎?
非常感謝。 Regards
P.D.爲我的英語道歉。
究竟發生了什麼? – njzk2