Example shows how to display static and dynamic text on the Hexiwear OLED Display.

Dependencies:   Hexi_OLED_SSD1351

Fork of Hexi_OLED_Text_Example by Hexiwear

Revision:
3:d633281e5f83
Parent:
1:42e8e50ae4ac
Child:
4:4e35f2e4b786
--- a/main.cpp	Fri Aug 26 23:07:25 2016 +0000
+++ b/main.cpp	Fri Aug 26 23:52:37 2016 +0000
@@ -47,7 +47,7 @@
         sprintf(text,"%.2f",time.read());
         
         /* Display time reading in 35px by 15px textbox at(x=55, y=40) */
-        oled.TextBox((uint8_t *)text,55,40,35,15); 
+        oled.TextBox((uint8_t *)text,55,40,35,15); //Increase textbox for more digits
              
         Thread::wait(1000);
     }