Library for the Princeton PT6312 Vacuum Fluorescent Display (VFD) driver.

Dependents:   mbed_PT6312

This library is documented here.

Revision:
6:d3dc313a6840
Parent:
5:be9ec73af639
--- a/Font_7Seg.h	Sun Dec 20 14:41:58 2015 +0000
+++ b/Font_7Seg.h	Wed Jan 20 18:50:50 2016 +0000
@@ -1,5 +1,6 @@
 /* mbed VFD Font Library, for Princeton PT6312 VFD controller as used in Cyberhome DVD462 and C2233
  * Copyright (c) 2015, v01: WH, Initial version, Test DVD462 and C2233
+ *               2015, v02: WH, Added symbols
  *
  * Permission is hereby granted, free of charge, to any person obtaining a copy
  * of this software and associated documentation files (the "Software"), to deal
@@ -169,6 +170,9 @@
 
 // ASCII Font definitions for segments in each character
 //
+//32 0x20  Symbols
+#define C7_SPC  ()
+
 //48 0x30  Digits
 #define C7_0    (S7_A | S7_B | S7_C | S7_D | S7_E | S7_F)
 #define C7_1    (S7_B | S7_C)
@@ -188,10 +192,10 @@
 #define C7_E    (S7_A | S7_D | S7_E | S7_F | S7_G)
 #define C7_F    (S7_A | S7_E | S7_F | S7_G)
 
-#define C7_G    (S7_A | S7_B | S7_C | S7_F | S7_G)
+#define C7_G    (S7_A | S7_C | S7_D | S7_E | S7_F)
 #define C7_H    (S7_B | S7_C | S7_E | S7_F | S7_G)
 #define C7_I    (S7_B | S7_C)
-#define C7_J    (S7_B | S7_C | S7_D)
+#define C7_J    (S7_B | S7_C | S7_D | S7_E)
 #define C7_L    (S7_D | S7_E | S7_F)
 #define C7_M    (S7_C | S7_E | S7_G)
 #define C7_N    (S7_C | S7_E | S7_G)