aboutsummaryrefslogtreecommitdiff
path: root/Mussel/examples/command/command.ino
diff options
context:
space:
mode:
Diffstat (limited to 'Mussel/examples/command/command.ino')
-rw-r--r--Mussel/examples/command/command.ino19
1 files changed, 0 insertions, 19 deletions
diff --git a/Mussel/examples/command/command.ino b/Mussel/examples/command/command.ino
deleted file mode 100644
index f359e00..0000000
--- a/Mussel/examples/command/command.ino
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <Mussel.h>
-
-// instantiate with attitude #6
-Mussel mussel(6);
-
-void setup() {
- Serial.begin(115200);
- mussel.begin();
-
- Serial.printf("\n\nDevice ready: %s\n",
- mussel.desc().c_str());
-}
-
-void loop() {
- Serial.printf("gap:%d\n",
- mussel.read());
-
- delay(1000);
-}