Simplest of programs to print a number to the dispBoB

Dependencies:   dispBoB mbed PCA9635

Revision:
1:6af9f50cb98f
Child:
2:2cd54fb949d9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/printNumber.cpp	Mon Jul 11 14:09:06 2011 +0000
@@ -0,0 +1,10 @@
+#include "mbed.h"
+#include "dispBoB.h"
+
+dispBoB db(p28, p27, p26);
+
+int main() {
+    db.init();      //ALWAYS initialise screen
+    db.cls();       //clear screen
+    db.printf("%d%", 123456);
+}