koyanagi.ele
GE-7000 Series
Feb 25, 2014
[QUOTE=Prawit Korsri]Hi

          now i got GE256X64B-7032B 2 pc , i can't find AVR libraly in "Code library" from main page. Where can i find it?[/QUOTE]

GE256X64B-7032B has same command set as GU-7000 Series therefore you can use the GU-700 code library.
Link to the code library:
http://www.noritake-elec.com/codeLibrary.php#gu7000
On line 28 of config.h, set the "NORITAKE_VFD_MODEL_CLASS" to "7003"

Other support tools:
http://www.noritake-elec.com/vfd_technology_an.php
Click on "GE/GU-7000" button under "Product Series"
I2C VFD Module: GU140X32F-7064B
Aug 14, 2014
First of full line up of VFD Module with I2C interface
GU-7000 Series
Feb 25, 2014
GU140x32F-7003 only has serial interface, either UART or USART.
New Technical Discussion
Jun 12, 2014
Discuss new technologies
SCK-3900-512X32H-01
Apr 25, 2014

Thank you for your continued support of Noritake Co., Inc. and its full line of VFD modules and services. Please help us by taking a few minutes to tell us your findings about our product you have received.

We appreciate your business and want to improve our products to meet your expectations.

We are pleased to offer a free sample of Ethernet board with Lantronix Xport and sample program to communicate via TCP/IP as thanks for your feedback.

[lanPort_325x1501] 

Number of Items are limited, we send these samples “First come first serve basis”. Please submit your sample request by May 30, 2014.

Please provide us with the following feedback:

  1. Did you have problem getting started with the module?
  2. How did you connect the display with your device
  3. What did you use the display for?
  4. Which processor/MCU/OS did you use?
  5. What type of commands would you like to see?
Please insert any images or videos to the post.
GU-7000 Series
Feb 25, 2014
[QUOTE=kylej1050]I've got a GU144x16D-7053B and have not been able to get this code to work. Below is the example code.

[CODE]#include #include #include #include #include #include // **************************************************** // **************************************************** // Uncomment one of the communication interfaces below. // GU7000_Serial_Async interface(38400,3, 5, 7); // BAUD RATE,SIN,BUSY,RESET //GU7000_Serial_Sync interface(3, 5, 6, 7); // SIN,BUSY,SCK,RESET //GU7000_Serial_SPI interface(3, 5, 6, 7, 8); // SIN,BUSY,SCK,RESET,CS //GU7000_Parallel interface('R', 8,9,10,11, 0,1,2,3,4,5,6,7); // Module Pin#3=RESET; BUSY,RESET,WR,RD,D0-D7 //GU7000_Parallel interface('B', 8,9,10,11, 0,1,2,3,4,5,6,7); // Module Pin#3=BUSY; BUSY,RESET,WR,RD,D0-D7 //GU7000_Parallel interface('N', 8,9,10,11, 0,1,2,3,4,5,6,7); // Module Pin#3=nothing; BUSY,RESET,WR,RD,D0-D7 // // **************************************************** // **************************************************** Noritake_VFD_GU7000 vfd; void setup() { _delay_ms(500); // wait for device to power up vfd.begin(144, 16); // 140x16 module vfd.interface(interface); // select which interface to use // Enter the 4-digit model class number // E.g. 7040 for GU140X16G-7040A vfd.isModelClass(7053); vfd.isGeneration('B'); // Uncomment this for B generation vfd.GU7000_reset(); // reset module vfd.GU7000_init(); // initialize module // Print Noritake on screen. vfd.print("Noritake"); } void loop() { }[/CODE]

My wiring is 100% correct, just nothing on the screen. If I take the SIN wire off and connect it randomly I can get random text on the screen so I know the display works. I downloaded the code above and it did not work in Arduino IDE 1.0.5.

IMAG00220.jpg[/QUOTE]

Can you replace your library with the attached?
GU-7000 Series
Feb 25, 2014
[QUOTE=Tristan]Yes, that is the same code I was referring to.


Are you using the SCK-7003-112X16G-N16?[/QUOTE]

there was mistake in the example code, try the code below:

[CODE]void setup() {
  _delay_ms(500);           // wait for device to power up
  vfd.begin(112, 16);       // 140x16 module
  // Enter the 4-digit model class number
  // E.g. 7040 for GU140X16G-7040A
  vfd.interface(interface); // select which interface to use
  vfd.isModelClass(7003);
  //vfd.isGeneration('B');    // Uncomment this for B generation
  vfd.GU7000_reset();       // reset module
  vfd.GU7000_init();        // initialize module
  
  
  // Print Noritake on screen.
  vfd.print("Noritake");
}[/CODE]
---------------------------
Explanation

The line
[CODE] vfd.interface(interface); // select which interface to use[/CODE]
needs to come before
[CODE]vfd.isModelClass(7003);
  //vfd.isGeneration('B');    // Uncomment this for B generation[/CODE]
GU-7000 Series
Feb 25, 2014
Try the attached sketch. Worked on Arduino 1.0.5.