kberck
01-08-2009, 01:52 AM
Hi all!
I am having troubles with the 112 x 16 Serial Graphic VFD Display, basically...with making it display O.o Didn't come with any documentation, and still haven't heard back from trying to get the full documentation package from their company.
After reading everything I could find on the forum, the only code I found was:
'' Parallax Serial VFD (Noritake GU112X16G-7003)Test
CON
_clkmode = xtal1 + pll16x ' use crystal x 16
_xinfreq = 5_000_000 ' 5 MHz cyrstal (sys clock = 80 MHz)
VFD_PIN = 2 ' serial VFD on P5
VFD_BAUD = 38400 ' minumum baud for display
OBJ
serial : "FullDuplexSerial"
PUB main
if serial.start(1, VFD_PIN, 0, VFD_BAUD)
serial.tx($1B) ' init display
serial.tx($40) ' init display
serial.str(string("Hello World!")) ' send "Hello World!"
Doesn't display anything. With lights out I can barely see glowing lines across the display. Voltage 5. Any help would be appreciated!
Ken
I am having troubles with the 112 x 16 Serial Graphic VFD Display, basically...with making it display O.o Didn't come with any documentation, and still haven't heard back from trying to get the full documentation package from their company.
After reading everything I could find on the forum, the only code I found was:
'' Parallax Serial VFD (Noritake GU112X16G-7003)Test
CON
_clkmode = xtal1 + pll16x ' use crystal x 16
_xinfreq = 5_000_000 ' 5 MHz cyrstal (sys clock = 80 MHz)
VFD_PIN = 2 ' serial VFD on P5
VFD_BAUD = 38400 ' minumum baud for display
OBJ
serial : "FullDuplexSerial"
PUB main
if serial.start(1, VFD_PIN, 0, VFD_BAUD)
serial.tx($1B) ' init display
serial.tx($40) ' init display
serial.str(string("Hello World!")) ' send "Hello World!"
Doesn't display anything. With lights out I can barely see glowing lines across the display. Voltage 5. Any help would be appreciated!
Ken