char value;
void setup() {
Serial.begin (9600);
// put your setup code here, to run once:
}
void loop() {
while(Serial.available()==0)
value=Serial . read();
Serial . println(value );
// put your main code here, to run repeatedly:
}
char value;
void setup() {
Serial.begin (9600);
// put your setup code here, to run once:
}
void loop() {
while(Serial.available()==0)
value=Serial . read();
Serial . println(value );
// put your main code here, to run repeatedly:
}