i have a NORITAKE CU20045MCPB 4x20 Char VFD, which can (a datasheet couldnt be find for the Pinout) use several ways to connect, AFAIK Ser/Par/I2C.
I figured out which pin is RX, so i can simply connect it to a UART port on the ARDUINO.
The only "problem" is, that i can't mark a position on the VFD like the LCD.setCursor command.
So i have i.e. no possibility to display a variable data WITHOUT refreshing the whole screen.
It works, but it was easier to have a command set or so to control at least things like INIT, CLEAR and HOME).
It works, but it was easier to have a command set or so to control at least things like INIT, CLEAR and HOME).
Is there a known solution ?
As far as I can tell most of the newer LCD display controllers use a command set that is similar to or an extension of the original Hitachi HD44780U command set.
Perhaps Noritake has done the same with its serial displays. In other words, if you can't find a command set for this particular display why don't you take a look at the data sheets for some of the other Noritake displays.
I did of course already, but cant figure out how to implement the codes.
The some sample test sketches that are available didn't work at all, because without any knowing what pin what signal.... playing around could damage the (expensive) display.
i bricked another in this way another one from FUTABA 2x40, which works also fine until i wanted to figure out ....
So, as i said: it works and in small cases i can define my own "functions" like:
Sure, for years !
But for my exactly board type is no datasheet available, only some ohter type - but they all havent this big socket connector and the adress 0F27H printed on the back (seems to be a i2c adress).
i have a CU20026SCPB-T back home that i think basically works with the tronicsatuff example code but i am on vacation and more focused on my gu7k noritake display.
tronics implies that on the cu2k cursor position is sequential int - byte foo; write(0x1b); write(0x48); write(foo);