Added simple echo arduino tester

This commit is contained in:
Nis Wechselberg 2017-03-13 08:28:31 +01:00
parent 842d4d3663
commit cef87f124d

13
Echo/Echo.ino Normal file
View file

@ -0,0 +1,13 @@
void setup() {
Serial.begin(115200);
}
// the loop routine runs over and over again forever:
void loop() {
while (Serial.available() > 0) {
Serial.write(Serial.read());
}
}