Arduino/Echo/Echo.ino

14 lines
187 B
Arduino
Raw Normal View History

2017-03-13 08:28:31 +01:00
void setup() {
Serial.begin(115200);
}
// the loop routine runs over and over again forever:
void loop() {
while (Serial.available() > 0) {
Serial.write(Serial.read());
}
}