void setup() {
Serial.begin(9600);
Serial.print("You can type here\n");
}
void loop() {
if (Serial.available() > 0) {
char receivedChar = Serial.read();
Serial.print(receivedChar);
}
}
void setup() {
Serial.begin(9600);
Serial.print("You can type here\n");
}
void loop() {
if (Serial.available() > 0) {
char receivedChar = Serial.read();
Serial.print(receivedChar);
}
}