void setup() { Serial.begin(2400); } void loop() { if (Serial.available()) { int inByte = Serial.read(); Serial.write(inByte); } }