BLE switch interface using micro:bit with 3 tact switches or 3 Makey Makey sensors

Dependencies:   microbit

Revision:
0:e0105c17ebb3
Child:
1:9d0e2e5b5d25
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Jun 06 19:03:22 2019 +0000
@@ -0,0 +1,13 @@
+/* See 
+ * http://lancaster-university.github.io/microbit-docs/advanced/ 
+ * for docs about using the micro:bit library
+*/
+#include "MicroBit.h"
+
+MicroBitDisplay display;
+
+int main()
+{
+    while(1)
+        display.scroll(":)");
+}
\ No newline at end of file