아두이노 듀에를 컴퓨터에 연결 Serial 1에 모듈을 연결 char buf1;char buf;void setup() { // initialize serial: Serial.begin(115200); Serial1.begin(115200);} void loop() { while(Serial.available()){ buf = Serial.read(); Serial1.write(buf);} while(Serial1.available()){ buf1 = Serial1.read(); Serial.write(buf1);} }