본문 바로가기
임베디드/Arduino

Bluetooth connecting

by sj0020 2020. 8. 20.

 

/*
 RXD = 아두이노 2번핀에 연결
 TXD = 아두이노 3번핀에 연결
*/

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

void setup() {
  Serial.begin(9600);  //HW Serial. 9600bps = 통신속도. 숫자높을수록 빠르지만 안정성떨어짐
  BTSerial.begin(9600); //SW Serial.
}

void loop() {
  if(BTSerial.available()){
    Serial.write(BTSerial.read());
  }

  if (Serial.available()){
    BTSerial.write(Serial.read());
  }
}

'임베디드 > Arduino' 카테고리의 다른 글

CDS 조도센서 , Potentiometer 가변저항  (0) 2020.08.21
LEDOnOff_DHT11  (0) 2020.08.21
dht11 온도습도  (0) 2020.08.20
가변저항  (0) 2020.08.20
Light 1 ON 0 OFF  (0) 2020.08.20