BS2 and VFD graphical display
Hi!
I wonder if someone could help me figure out how to attach this VFD display to a Basic Stamp 2
See attached PDF
I also would like to know how the programming should look like...
since the parallell circut uses many io:s on the bs2 i prefer async or SPI communication.
/Robban
I wonder if someone could help me figure out how to attach this VFD display to a Basic Stamp 2
See attached PDF
I also would like to know how the programming should look like...
since the parallell circut uses many io:s on the bs2 i prefer async or SPI communication.
/Robban
pdf
![](/plugins/FileUpload/images/file.png)
212K
Comments
You should be able to figure out the programming from the Stamp Manual and the VFD documentation. The VFD should work mostly like other serial display modules, at least for simple text. The commands to control the display are unique to this display, but the idea is the same. For example, to change the cursor position to <X,Y>, you'd do
SEROUT pin,Baud,[$10,X,Y]
where pin is the I/O pin used to send to the VFD and Baud is the constant shown in the Stamp Manual section on SEROUT used for the Baud that's set by you in the VFD module.
Remember to connect HB to MB if you're not going to use them and leave /RES unconnected so the module will automatically reset when it's powered up.
Yes i have read it several times ,but my question is..i just want to send data TO the display. do i need to put an serin line for the TXD connection ?