void setup() {
Serial.begin(115200);
Serial.println("Hello");
}
void loop() {
while (Serial.available()) {
char ch = Serial.read();
Serial.print(ch);
}
}void setup() {
Serial.begin(115200);
Serial.println("Hello");
}
void loop() {
while (Serial.available()) {
char ch = Serial.read();
Serial.print(ch);
}
}