From cef87f124dbd81ecf35b0cd54edd27c4dc044b57 Mon Sep 17 00:00:00 2001 From: Nis Wechselberg Date: Mon, 13 Mar 2017 08:28:31 +0100 Subject: [PATCH] Added simple echo arduino tester --- Echo/Echo.ino | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Echo/Echo.ino diff --git a/Echo/Echo.ino b/Echo/Echo.ino new file mode 100644 index 0000000..abacbf0 --- /dev/null +++ b/Echo/Echo.ino @@ -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()); + } +} + + +