displaying on SSD1306, 128x64 pixels OLED

Dependencies:   microbit

Revision:
6:c69f08f464b5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/example_clock.cpp	Sun Feb 23 01:57:35 2020 +0000
@@ -0,0 +1,9 @@
+#include "MicroBit.h"
+#include "Display.h"
+#include "common.h"
+
+void example_clock() {
+    //  change to see - example  17:31 becomes    
+    display.vertClock(17*60 + 31);
+    release_fiber();
+}