void setup() {
Serial.begin(9600);
Serial.println("Ready");
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
if(Serial.available()>0){
// static byte x = Serial.read();
Serial.println((char)Serial.read());
}
}