T6963C (240x128) + U8glib

Simple Code XD

#include <U8glib.h>

U8GLIB_T6963_240X128 u8g(22,23,24,25,26,27,28,29,30,31,32,33,16);  // 8Bit Com: D0..D7: 22,23,24,25,26,27,28,29, ce=30, cd=31, wr=32, rd=33, reset=16

void setup(void){
  u8g.setFont(u8g_font_helvB08);
}

void loop (void){
  u8g.firstPage();
  do {
    text();
  } while( u8g.nextPage() );
}

void text(void) {
  u8g.drawStr( 0, 8, "//Blink");
  u8g.drawStr( 0, 20, "int led = 13;");
  u8g.drawStr( 0, 30, "void setup() {");
  u8g.drawStr( 6, 40, "pinMode(led, OUTPUT);");
  u8g.drawStr( 0, 50, "}");
  u8g.drawStr( 0, 60, "void loop() {");
  u8g.drawStr( 6, 70, "digitalWrite(led, HIGH);");
  u8g.drawStr( 6, 80, "delay(1000);");
  u8g.drawStr( 6, 90, "digitalWrite(led, LOW);");
  u8g.drawStr( 6, 100, "delay(1000);");
  u8g.drawStr( 0, 110, "}");
  u8g.drawStr( 0, 127, "EA DIP240B-7KLW @ DEAFBOY 1/1/2014");
}

Nice Device - i have several GLCDs with different resolutions - time to connect them now to ARDUINOs (@ ATMELs before) :smiley:

Great.

Is this the same display as mention here T6963C error - #9 by DEAFBOY - Displays - Arduino Forum?
Did you solve all problems? What had been the problems? How did you solve the FS1/FS2 issue?

Oliver

Ja, ist diesselbe Display. Hab nix geändert. Nur die Lib u8glib ausprobiert und es hat funktioniert. Es hat mich überzeugt und werde weitermachen. T6963C Lib zeigt die Display nicht richtig an und werde auch nicht beschäftigen. Zeitverschwendung.