如何添加两个 RFCOMM 设备?

如何添加两个 RFCOMM 设备?

我想通过蓝牙将我的电脑(运行 Ubuntu 14.04)连接到 Arduino Uno。

我添加了一个这样的 RFCOMM 设备(MAC 地址只是示例):

rfcomm0 {
    bind yes;
    device 00:00:00:00:00:00;
    channel 1;
    comment "Serial Port 1";
}

在以下文件中:/etc/bluetooth/rfcomm.conf并且它有效。然后我想通过附加添加第二个

rfcomm1 {
    bind yes;
    device 11:11:11:11:11:11;
    channel 2;
    comment "Serial Port 2";
}

但之后就仅rfcomm1存在,rfcomm0不再存在。

我遵循了本教程(德语):
https://www.dinotools.de/2014/03/05/raspberry-pi-mit-arduino-per-bluetooth-verbinden/

我该怎么做?

答案1

我不知道为什么,但我必须将两个设备(单个或一起)通过通道 1 连接起来,然后它才能工作。

相关内容