我想透過藍牙將我的 PC(運行 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,然後它才能運作。