gpt4 book ai didi

ubuntu - 在 ubuntu 12.04 中无法连接到 Bluetooth Mate

转载 作者:太空宇宙 更新时间:2023-11-03 17:00:48 27 4
gpt4 key购买 nike

我正在尝试将运行 ubuntu 12.04 的笔记本电脑连接到连接到 arduino 的蓝牙 Mate Silver。

接线是:

CTS-I->No connection (leave floating)
VCC->5V
GND->GND
TX-O->D2
RX-I->D3
RTS-O->No connection (leave floating)

在 arduino 上运行的代码:

$include <SoftwareSerial.h>  

int bluetoothTx = 2; // TX-O pin of bluetooth mate, Arduino D2
int bluetoothRx = 3; // RX-I pin of bluetooth mate, Arduino D3

SoftwareSerial bluetooth(bluetoothTx, bluetoothRx);

void setup()
{
Serial.begin(9600); // Begin the serial monitor at 9600bps

bluetooth.begin(115200); // The Bluetooth Mate defaults to 115200bps
bluetooth.print("$$$"); // Enter command mode
delay(100); // Short delay, wait for the Mate to send back CMD
bluetooth.println("U,9600,N"); // Temporarily Change the baudrate to 9600, no parity
// 115200 can be too fast at times for NewSoftSerial to relay the data reliably
bluetooth.begin(9600); // Start bluetooth serial at 9600
}

void loop()
{
if(bluetooth.available()) // If the bluetooth sent any characters
{
// Send any characters the bluetooth prints to the serial monitor
Serial.print((char)bluetooth.read());
}
if(Serial.available()) // If stuff was typed in the serial monitor
{
// Send any characters the Serial monitor prints to the bluetooth
bluetooth.print((char)Serial.read());
}
// and loop forever and ever!
}

当我在 ubuntu 中打开蓝牙管理器时,我发现蓝牙伴侣可见但未知,当我右键单击它时没有 SPP 连接选项。我浏览的所有教程和博客都通过 SPP 选项连接到蓝牙伴侣。

我的蓝牙管理器的图片:http://www2.picturepush.com/photo/a/12001550/640/12001550.jpg

那么现在我该如何连接到蓝牙伴侣呢?

最佳答案

经过大量谷歌搜索和阅读各种博客后,我遇到了这个命令:

    sudo rfcomm bind 0 00:06:66:48:71:0C

其中00:06:66:48:71:0C是蓝牙mate silver的mac地址。

完成后,我发现蓝牙管理器中我的设备的串行端口选项已启用。我从那里继续连接到设备。

关于ubuntu - 在 ubuntu 12.04 中无法连接到 Bluetooth Mate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14422069/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com