정보나눔

오픈소스하드웨어 프로젝트에 대한 다양한 정보를 나누는 공간입니다.

아두이노 + 충격센서 도와주세요
이나연 | 2017-08-30

충격센서가 0의 값일 때 a의 신호로 보내려고 하는데

이 코드를 써도 되지 않아요...

 

#include<SoftwareSerial.h>
int Knock = 2;
SoftwareSerial BTSerial(2,3);


void setup() {
 // put your setup code here, to run once:
Serial.begin(115200);
BTSerial.begin(115200);
 pinMode(Knock, INPUT);
}


void loop() {
// put your main code here, to run repeatedly:

if(digitalRead(Knock)==0)
{
 
 BTSerial.println("a");
 
}
else
{
}
}

이전글   |    블루투스 HC-06 다중페어링이 가능한가요? 2017-08-29
다음글   |    블루투스 통신 문의 2017-08-31