rx
-
Serial Rx Tx & SoftwareSerial Rx TxArduino/Serial 통신 2020. 10. 20. 19:31
Rx & Tx 소스 코드 // 데이터 송/수신 둘 중에 하나만 해야한다. 주석을 하도록 하자. // void setup() { // put your setup code here, to run once: Serial.begin(9600); } void loop() { /* // 1. 데이터 전송하는 아두이노에서는 선을 tx에 꽂아야 한다. Serial.println("111100"); delay(100); */ } void serialEvent() { // 2. 리시브(받는 부분)하는 아두이노에서는 선을 rx에 꽂아야 한다. char c = Serial.read(); Serial.print("rx : "); Serial.println(c); } SoftwareSerial Rx & Tx 소스 코드 #incl..