// This project discards the Serial output from the sketch;
// instead, it connects the serial monitor to a physical serial port on your computer.
//
// Only works on Chrome
void setup() {
Serial.begin(9600);
Serial.println("<Arduino ready>");
}
void loop() {
if (Serial.available() > 0) {
String input = Serial.readStringUntil('\n');
Serial.println(input);
}
}