我想通过蓝牙将我的PC (运行Ubuntu14.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/。
我该怎么做呢?
发布于 2016-05-03 19:51:36
我不知道为什么,但我必须连接两个设备(单一或一起)与通道1,然后它工作。
https://askubuntu.com/questions/766470
复制相似问题