Sanyo LC75711 VFD controller/driver for upto 16 Dot Matrix Characters
The component page is here.
Diff: LC75711_UDC.inc
- Revision:
- 3:8101f714d38d
- Parent:
- 1:bcf010fcacae
diff -r cb6f2b7930c8 -r 8101f714d38d LC75711_UDC.inc
--- a/LC75711_UDC.inc Fri Sep 15 17:38:40 2017 +0000
+++ b/LC75711_UDC.inc Sun Sep 17 13:32:22 2017 +0000
@@ -25,15 +25,23 @@
#include "LC75711_Config.h"
#if(LC75711_UDC == 1)
-// User Defined Characters (UDCs) are defined by a 7 byte bitpattern. The P0..P4 form the character pattern.
-// P7 P6 P5 P4 P3 P2 P1 P0
-// 0 x x x 0 1 1 1 0
-// 1 x x x 1 0 0 0 1
+// User Defined Characters (UDCs) are defined by a 7 byte bitpattern.
+// The P0..P4 form the UDC pattern.
+// P7 P6 P5 P4 P3 P2 P1 P0
+// 0 x x x CD4 CD3 CD2 CD1 CD1
+// 1 x x x CD9 CD8 CD7 CD6 CD5
// . .............
-// 6 x x x 1 0 0 0 1
+// 6 x x x C35 C34 ... C31
//
-// Blinking UDCs are enabled when the specific Grid blink controlbit is set.
+// The UDC matrix will show on the VFD as
+// 0 CD1 CD2 CD3 CD4 CD5
+// 1 CD6 CD7 ....... CD10
+// . .............
+// . .............
+// . .............
+// 6 CD31 C32 ....... CD35
//
+
// Some sample User Defined Chars 5x7 dots */
const char udc_Bat_Hi[] = {0x0E, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F}; // Battery Full
const char udc_Bat_Ha[] = {0x0E, 0x11, 0x13, 0x17, 0x1F, 0x1F, 0x1F}; // Battery Half
@@ -44,7 +52,7 @@
//const char udc_PC[] = {0x1C, 0x10, 0x08, 0x1F, 0x1B, 0x1B, 0x1F, 0x00}; //Padlock Closed
//
-// NOTE: the patterns below still need to be flipped or the will be mirrored on the display...
+// NOTE: the bitpatterns below still need to be flipped or they will be mirrored on the display...
//
//const char udc_ae[] = {0x00, 0x00, 0x1B, 0x05, 0x1F, 0x14, 0x1F, 0x00}; //æ
//const char udc_0e[] = {0x00, 0x00, 0x0E, 0x13, 0x15, 0x19, 0x0E, 0x00}; //ø
LC75711 VFD Driver for upto 16 Dot Matrix Characters,