心拍・酸素飽和度モニタモジュール MAXREFDES117から取得した心拍の値をシリアルコンソールに表示するプログラムです。

Dependencies:   microbit

Fork of microbit-component-display by BBC

Revision:
0:0c37474c8541
Child:
1:83ace7df2c63
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Wed Apr 20 14:01:36 2016 +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