This is a driver library for the popular QDSP-6064 bubble display. These miniature displays can be leveraged for small breadboard projects in order to display debug information or even in larger projects where LCD displays are unpractical.

Dependents:   QDSP-6064-hello

Fork of BubbleDisplay by Michael Dushkoff

Revision:
1:0dd75913f211
Parent:
0:cc6e3bfecab4
Child:
2:3604f34e944b
--- a/bubble.cpp	Thu Mar 26 07:20:46 2015 +0000
+++ b/bubble.cpp	Thu Mar 26 07:51:53 2015 +0000
@@ -33,10 +33,10 @@
     _seg = 0;
     
     // Set the initial character values
-    _chrs[0] = dispTabl[0];
-    _chrs[1] = dispTabl[0];
-    _chrs[2] = dispTabl[0];
-    _chrs[3] = dispTabl[0];
+    _chrs[0] = dispTabl[' '];
+    _chrs[1] = dispTabl[' '];
+    _chrs[2] = dispTabl[' '];
+    _chrs[3] = dispTabl[' '];
 }
 
 /*