我正在尝试从我的 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 时,一切正常。
谁能把我引向正确的方向?