如何使用gatttool非交互模式

时间:2015-03-29 07:10:11

标签: bluetooth raspberry-pi

我想以非交互模式编写gatttool

$ sudo gatttool -i hci0 -b 78:A5:04:44:0A:57 -I
[78:A5:04:44:0A:57][LE]> connect
Attempting to connect to 78:A5:04:44:0A:57
Connection successful
[78:A5:04:44:0A:57][LE]> char-write-cmd 0x0025 ff

我正在改变使用蓝牙的光的颜色。

使用非交互模式的等价物是什么? 我试过这样,但它不会改变光的颜色并阻止它我必须使用ctrl+c。根本没有消息。

sudo gatttool -i hci0 -b 78:A5:04:44:0A:57 --char-write -a 0x0025 -n ff

如何编写命令?

环境:

我正在使用Raspberry PiRasbian

1 个答案:

答案 0 :(得分:4)

该选项不是--char-write,而是--char-write-req

总命令必须是:

sudo gatttool -i hci0 -b 78:A5:04:44:0A:57 --char-write-req -a 0x0025 -n ff