HC-06蓝牙到Android - 接收随机符号

时间:2017-12-17 22:26:47

标签: android bluetooth arduino app-inventor

我想使用HC-06从光传感器发送值。我把所有东西都连接得很好我使用了MIT App Inventor,图像显示了我如何连接蓝牙模块,以及如何显示数据。

enter image description here

Arduino代码

int analogInPin = A0;  
int sensorValue = 0;        

void setup() {
   Serial.begin(9600);
}

void loop() {
  sensorValue = analogRead(analogInPin);
  Serial.println(sensorValue);
  delay(100);
}

电话

enter image description here

我已经搜索了几个解决方案但没有工作。我的波特率为9600(与蓝牙模块相同)。

0 个答案:

没有答案