How to use the micro:bit display without the whole microbit class. Example display component code from http://lancaster-university.github.io/microbit-docs/advanced/#using-components-directly

Dependencies:   microbit

Fork of microbit-component-display by micro:bit

Revision:
0:0c37474c8541
--- /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