int incomingByte = 0; // for incoming serial data
void setup() {
Serial.begin(11520); // opens serial port, sets data rate to 9600 bps
}
void loop() {
// reply only when you receive data:
if (Serial.available() > 0) {
// read the incoming byte:
incomingByte = Serial.read();
// say what you got:
Serial.print(millis());
Serial.print(" ");
Serial.print(incomingByte, HEX);
Serial.print("|");
Serial.println(incomingByte, DEC);
}
delay(100);
}