반응형
Notice
Recent Posts
Recent Comments
Link
목록아두이노 (9)
Brise
아두이노 듀에 : 시리얼 중계하기
아두이노 듀에를 컴퓨터에 연결 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);} }
MCU
2014. 9. 18. 17:43