Arduino蓝牙连接

时间:2012-08-28 00:22:39

标签: bluetooth arduino wireless-connection bluesmirf

我正在尝试从我的arduino发送一个字符串到串行监视器。 我正在使用带有arduino UNO的sparkfun bluesmirf芯片。

我的代码非常简单:

void setup() {
    Serial.begin(115200); // begin serial communication at 115200 baud rate
}
void loop() {
    Serial.println("hello world"); // write hello world
    delay(1000); // delay one second
}

当我打开显示器时,我收到了胡言乱语。 当我用USB线连接到arduino时,一切正常。

任何人都可以把我放在正确的方向吗?

1 个答案:

答案 0 :(得分:0)

根据bluesmirf的版本,默认波特率为9600或115k。 这里another project that mentions如何设置不同版本的波特率。

或者,只需将arudiono代码和串行监视器设置为9600即可进行测试。