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.
Fork of BubbleDisplay by
History
Add a write(uint16_t) method
2016-03-29, by MACRUM [Tue, 29 Mar 2016 07:51:47 +0000] rev 3
Add a write(uint16_t) method
Fixed issue with display starting out as "0000" which was due to the fact that a table lookup is not necessary for initializing the character values since these characters are looked up in the LUT already (redundant call).
2015-03-26, by mdu7078 [Thu, 26 Mar 2015 08:10:08 +0000] rev 2
Fixed issue with display starting out as "0000" which was due to the fact that a table lookup is not necessary for initializing the character values since these characters are looked up in the LUT already (redundant call).
Fixed the '_' character which was displaying as a '.' instead (0x08 vs 0x80).
2015-03-26, by mdu7078 [Thu, 26 Mar 2015 07:51:53 +0000] rev 1
Fixed the '_' character which was displaying as a '.' instead (0x08 vs 0x80).
Completed BubbleDisplay driver with lookup table for various characters that can be displayed on the device and basic access functions.
2015-03-26, by mdu7078 [Thu, 26 Mar 2015 07:20:46 +0000] rev 0
Completed BubbleDisplay driver with lookup table for various characters that can be displayed on the device and basic access functions.