serialEvent
-
시리얼 통신에 사용되는 함수Arduino/Serial 통신 2020. 10. 20. 19:22
readBytes함수 & readreadBytesUntil 함수 시리얼 통신에 사용되는 찾기함수이다. 소스 코드 // 함수들에 대해 알아보자. // readBytes함수 void setup() { // put your setup code here, to run once: Serial.begin(9600); Serial.setTimeout(2000); // 기본은 1000(1초)를 의미 } void loop() { // put your main code here, to run repeatedly: char temp[100]; // 입력이 있으면 if (Serial.available() > 0) { // byte len = Serial.readBytes(temp,10); byte len = Serial.re..