0
私はArduino Bluno(Bluetoothモジュール付き)を備えたPIRモーションセンサーを使用しています。センサーで検出された動きの値をarduinoからBluetooth経由でPCに送信したい。Arduino to PC Bluetooth Communication
どのように私のPCでそれを得ることができますか?これはC++、C#、またはPythonでも可能です。 誰でも手伝っていただければ幸いです。あなたは、特にPCが直接受信する場合を除き、あなたはシリアルモニタにプリントを受け取るために、別の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));
}