Skip to content
/ PT6314 Public

Arduino library for PT6314 VFD Driver (Serial Protocol)

License

Notifications You must be signed in to change notification settings

so1der/PT6314

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PT6314

Arduino library for PT6314 VFD Driver

This library allows Arduino board (or any other board with Arduino framework, like espressif, etc.) to control vacuum fluorescent display (VFD) based on the PTC PT6314 chipset via Serial Protocol.

To control PT6314 via Serial Interface, connection should be as followed:

alt tag

PT6314 also can be controlled via parallel protocol (i80/M68), in this case You can use LiquidCrystal library (main features will work, but for some things library should be modificated)

I wrote this library following the example of the library LiquidCrystal, so usage of it is pretty similar - begin(), print(), etc. You can see more in the "Examples" folder.

Note about createChar()

alt tag In some displays, like in my, for example, there are only 7 rows for each character. However, display manufacturers in order not to waste PT6314's ability to display 8 rows of information, connect displays cursors and other parts (like commas, dots, etc.) as eighth rows. If you have a display like this, you need to consider that fact when you create custom chars, and if you don't need a cursor/dot/comma to appear with your custom char, you need to fill an eighth row with zeros.