writing text on a display in reverse mode
Robban
Posts: 124
I wonder if it is possible to write a text in "reverse" mode...so when i "aim" the display on a mirror the text comes natural.
·
·
Comments
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
- Stephen
and use Pbasic with Basic stamp 2
·
·· You won’t really be able to do it with a character display…You’d maybe have to use two mirrors or something.· You could define custom characters in reverse, but that would only give you 8 characters.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Chris Savage
Parallax Tech Support
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
- Stephen
is there some kind of command to do this or do i have to make the char:s myself....read something about "reverse" on the datasheet..see below
http://www.parallax.com/dl/docs/prod/audiovis/VFD-AppNote-01-V1.1.pdf
·
·· Because the VFD has a bitmap mode, you could do this with it, however it would be tedious.· You can’t just send a command to flip the character set.· Reverse on this display has a different meaning.· It makes background pixels white and character pixels dark, but they’re still normal as far as direction goes.· You may be able to draw the display in reverse, but you will have to map out all the pixels and dump them to the display as a bitmap image.· It could be done though.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Chris Savage
Parallax Tech Support
I found the LCD charater creator and there was a funtion "mirror" and when i for ex..
F = Char0 DATA $1F,$10,$10,$1E,$10,$10,$10,$00,$00,$00,$00
and F "mirrored" would be.
Char0 DATA $1F,$01,$01,$0F,$01,$01,$01,$00,$00,$00,$00
is it possible to convert this so my graphical VFD prints the mirrored F?
or is there any program to do this with?
the datasheet on the VFD
http://www.farnell.com/datasheets/90808.pdf
/Robban
On a character display a single character could be mirrored using the customer characters to simulate it. In fact, on most you could do this with up to 8 characters. Another option is if the display was graphics capable you could do it that way.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Chris Savage
Parallax Tech Support
-Phil