Arduino到PC蓝牙通信

时间:2016-06-26 22:04:16

标签: c# android python c++ bluetooth

我正在使用带有Arduino Bluno(带蓝牙模块)的PIR运动传感器。我想通过蓝牙将传感器检测到的运动值从arduino发送到PC。

我怎么能在我的电脑上得到它?它可以是C ++,C#甚至是Python。 如果有人能提供帮助,请感谢。

这是我的arduino代码:

int ledPin = 13;                // choose the pin for the LED
int inputPin = 2;               // choose the input pin (for PIR     
int pirState = LOW;
char str1;// we start, assuming no motion detected
int val = 0;
volatile int count =0;// variable for reading the pin status

void setup() {

// pinMode(ledPin, OUTPUT);      // declare LED as output
Serial.begin(115200);
pinMode(inputPin, INPUT);     // declare sensor as input

attachInterrupt(digitalPinToInterrupt(2), pin_ISR,FALLING);
}

void pin_ISR() {

 count++;

Serial.write(Serial.print(count));
}

1 个答案:

答案 0 :(得分:0)

除非您特别希望PC直接接收,否则您可以使用另一个arduino接收打印到串行监视器。然后,您可以收集程序并保存进入串行监视器的内容。只是一个建议。最终可能会更容易。祝你好运,无论你选择做什么。