Skip to content
Snippets Groups Projects
simple_serial.ino 414 B
Newer Older
int incomingByte = 0; // for incoming serial data

void setup() {
  Serial.begin(112500);
}

void loop() {
  // put your main code here, to run repeatedly:
 // reply 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);
  }
}