void setup() { Serial.begin(9600); } void loop() { while (Serial.available()>0) { Serial.print(Serial.read(),BYTE); } }