Hi, iwant to controll an vfd(8 char 14 Segment) with an oki lcd Driver MSM5265.
But I cant use something like
Serial.print(“A”)
I have to send eachtime 160bit stream data.
This 160bit is divided in 2 80bit blocks
if I want to diplay an “A” as the first character I have to set the bits 37-30 “1,0,1,0,0,1,1”
and 117-110 “0,0,0,1,0,1,1”. This coresspond to each of the segment of the char.
The next thing is that the first char on the display and the last 2 have different assignment for the segments than the chars 2-6.
That means I need 14 bits for each letter and each number in 3 different versions.
In all that are 14336 = 1 512 bits
What is the best method to safe this data? Array? How big would it become if I use an bool array ?
Will I run into problems with space on the arduino?
What if I send this 160 bits from the PC to the arduino over the USB Connection?
Would that be a better sollution? I want to use it in an HTPC.
greats