블루투스 이름 바꾸기
Klant | 2018-06-10
|
|
---|---|
#include <SoftwareSerial.h>
SoftwareSerial BTSerial(4, 5);
void setup() { Serial.begin(9600); BTSerial.begin(9600); }
void loop() { if (BTSerial.available()){ Serial.write(BTSerial.read()); }
if (Serial.available()){ BTSerial.write(Serial.read()); } } |
|
이전글 | 이러한 컴파일 에러가 뜨는 이유가 무엇인가요?... | 2018-06-10 |
다음글 | 아두이노 USB포트 | 2018-06-10 |