본문 바로가기
카테고리 없음

아두이노 serial 입력

by fromnothing1 2021. 7. 16.

 

int incomingByte = 0; // for incoming serial data

void setup() {
  Serial.begin(9600); // opens serial port, sets data rate to 9600 bps
}

void loop() {
  // send data only when you receive data:
  if (Serial.available() > 0) {
    // read the incoming byte:
    incomingByte = Serial.read();

    // say what you got:
    Serial.print("I received: ");
    Serial.println(incomingByte, DEC); // 10 진수로 입력
  }
}

댓글