2

我一直在尝试使用 pygatt 和 Bluegiga BLE112D 写入自定义 gatt 特性。我尝试写入的设备也是 BLE112(不是加密狗)。我一直在使用以下 python 脚本:

import pygatt

adapter = pygatt.BGAPIBackend()

adapter = pygatt.BGAPIBackend()
adapter.start()
adapter.scan(timeout=1)

device = adapter.connect('88:6b:0f:7e:4e:66',address_type=pygatt.BLEAddressType.public)
characteristic = "8fbfa190-1af2-427c-a22b-3da61b6b7162"
device.char_write(characteristic, bytearray([0x00, 0xFF]))

#check the characteristic
value = device.char_read(characteristic)

print(value)
adapter.stop()

我尝试写入的特征配置如下:

<service uuid="8fbfa190-1af2-427c-a22b-3da71b6b7166" advertise="true">
  <description>Table</description>
  <include id="manufacturer" />
  <characteristic uuid="8fbfa190-1af2-427c-a22b-3da61b6b7162" id="xgatt_table">
      <properties read="true" write="true" />
      <value length="2" />
  </characteristic>
</service>

-脚本成功连接适配器和设备。- 我可以很好地读取特征并且写入时不会产生错误,但是当我再次读取特征时,值没有改变。- 我启用了日志记录并查看了输出,但那里的所有内容都显示了成功的过程。-我可以使用第三方 BLE 应用程序以及 blegui 应用程序写入特征

我很确定问题出在 pygatt 脚本上,但我不知道可能是什么问题。

总结一下我正在使用的内容: Pygatt with python 3 to connect to a BLE112A through a BLE112D on windows 10.

4

1 回答 1

1

wait_for_response=True通过在函数中添加作为参数解决了这个问题char_write。所以新的 write 函数调用是:

device.char_write(characteristic, bytearray([0x00, 0xFF]), wait_for_response=True)

我不完全确定为什么会这样,但我相信脚本是在写入新值之前从特征中读取的。

于 2018-11-27T01:47:25.440 回答