Princeton PT6964 LED controller supports 4 Digits @ 13 Segments, 5 Digits @ 12 Segments, 6 Digits @ 11 Segments or 7 Digits @ 10 Segments. Also supports a scanned keyboard of upto 20 keys. SPI bus interface.

Dependents:   mbed_PT6964

Princeton PT6964 LED controller supports 4 Digits @ 13 Segments, 5 Digits @ 12 Segments, 6 Digits @ 11 Segments or 7 Digits @ 10 Segments. Also supports a scanned keyboard of upto 20 keys. SPI bus interface.

See Component page here.

Revision:
0:27f32a087e5a
Child:
1:1adf993a3e34
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Font_7Seg.cpp	Sat Nov 21 16:43:15 2015 +0000
@@ -0,0 +1,49 @@
+/* mbed LED Font Library, for Princeton PT6964 controller as used in DVD538A
+ * Copyright (c) 2015, v01: WH, Initial version
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+#include "Font_7Seg.h"
+
+// ASCII Font definition table for transmission to PT6964
+//
+//#define FONT_7S_START     0x20
+//#define FONT_7S_END       0x7F
+//#define FONT_7S_NR_CHARS (FONT_7_END - FONT_7S_START + 1)
+ 
+const char FONT_7S[][2] = { 
+                             {LO(C_0), HI(C_0)}, //48 0x30
+                             {LO(C_1), HI(C_1)},
+                             {LO(C_2), HI(C_2)},
+                             {LO(C_3), HI(C_3)},
+                             {LO(C_4), HI(C_4)},                   
+                             {LO(C_5), HI(C_5)},
+                             {LO(C_6), HI(C_6)},
+                             {LO(C_7), HI(C_7)},
+                             {LO(C_8), HI(C_8)},
+                             {LO(C_9), HI(C_9)},
+                             {LO(C_A), HI(C_A)}, //65 0x41, A
+                             {LO(C_B), HI(C_B)},
+                             {LO(C_C), HI(C_C)},
+                             {LO(C_D), HI(C_D)},
+                             {LO(C_E), HI(C_E)},
+                             {LO(C_F), HI(C_F)}
+                                                 };// 127                             
+  
+ 
\ No newline at end of file