Hi Don,
Thanks for your reply.
As I understand it you were able to read the data sheets and then write some code.
In sep/oct. 2010 i ordered an Arduino mega2560 together with an Ethernet shield (v5) and started playing with it. Played with OneWire, rotary encoder, i2c RTC, 20x2 LCD, Ethernet server/client stuff and the 2 graphic displays mentioned. For the 2 graphic displays i found libraries at
http://en.radzio.dxp.pl/t6963/ for the T6963 display and
https://github.com/vsergeev/embedded-drivers/tree/master/avr-lc7981 for the HD61830 one.
Then i modified both to let them work together in a test project.
There are a couple of problems with those libraries.
1) I cannot print like i could do with Serial.print or LCD.print etc.
2) There are different implementations with different functions to draw lines, circles etc (file: graphic.c/graphics.c).
Now it seems that you want us to help you write better code without using either the data sheet or the code that you would like us to revise. That's a pretty tall order.
I for sure didn't meant to ask for you guys to solve my problems.

And yes, without giving some information and ask for a total solution is indeed waaay to much to ask for..

A lot of people write libraries for graphic displays and use their own graphic functions. It's nice to have a single framework for all type of graphic displays. This is the main reason i'm looking into GLCD.
I'll focus on the T6963 controller for now because it is 240 pixels wide and i am not sure if wider displays can work with GLCD.
What have i done so far (still lots of things to do).
In 'Modlm6270_Manual_Config.h':
What can i do with #define glcdEN, the T6963 doesn't have an enable line, just leave it out?
The T6963 has separate WR and RD lines. How should i go on with that, are heavy modifications needed in other .cpp files?
config/Modlm6270_Manual_Config.h
/*
* lm6270_Manual_Config.h - User specific configuration for Arduino GLCD library
*
* Use this file to set io pins and LCD panel parameters
* This version is for a LM6270SYL display
* connected using the default Arduino wiring
*
*/
#ifndef GLCD_PANEL_CONFIG_H
#define GLCD_PANEL_CONFIG_H
/*
* define name for panel configuration
*/
#define glcd_PanelConfigName "lm6270-Manual"
/*********************************************************/
/* Configuration for LCD panel specific configuration */
/*********************************************************/
#define DISPLAY_WIDTH 240
#define DISPLAY_HEIGHT 64
// panel controller chips
#define CHIP_WIDTH 240 // pixels per chip
#define CHIP_HEIGHT 64 // pixels per chip
/*********************************************************/
/* Configuration for assigning LCD bits to Arduino Pins */
/*********************************************************/
/*
* define name for pin configuration
*/
#define glcd_PinConfigName "lm6270-Manual"
/*
* Pins can be assigned using Arduino pin numbers 0-n
* Pins can also be assigned using PIN_Pb
* where P is port A-L and b is bit 0-7
* Example: port D pin 3 is PIN_D3
*
*/
/* Data pin definitions
*/
#define glcdData0Pin PIN_A0
#define glcdData1Pin PIN_A1
#define glcdData2Pin PIN_A2
#define glcdData3Pin PIN_A3
#define glcdData4Pin PIN_A4
#define glcdData5Pin PIN_A5
#define glcdData6Pin PIN_A6
#define glcdData7Pin PIN_A7
/* Arduino pins used for Commands
* default assignment uses the first five analog pins
*/
#define glcdCSEL1 PIN_C2
#define glcdRW PIN_C0
#define glcdRD PIN_C1
#define glcdDI PIN_C3
//#define glcdEN PIN_C2
// Reset Bit - uncomment the next line if reset is connected to an output pin
#define glcdRES PIN_C4 // Reset Bit
/*
* the following is the calculation of the number of chips - do not change
*/
#define glcd_CHIP_COUNT ((DISPLAY_WIDTH + CHIP_WIDTH - 1) / CHIP_WIDTH)
/*
* The following defines are for panel specific low level timing.
*
* See your data sheet for the exact timing and waveforms.
* All defines below are in nanoseconds.
*/
#define GLCD_tDDR 320 /* Data Delay time (E high to valid read data) */
#define GLCD_tAS 140 /* Address setup time (ctrl line changes to E high) */
#define GLCD_tDSW 200 /* Data setup time (data lines setup to dropping E) */
#define GLCD_tWH 450 /* E hi level width (minimum E hi pulse width) */
#define GLCD_tWL 450 /* E lo level width (minimum E lo pulse width) */
#include "device/T6963_Device.h"
#endif //GLCD_PANEL_CONFIG_H
device/T6963_Device.h
/*
T6963_Device.h - Arduino library support for graphic LCDs
vi:ts=4
This is a device template file that shows what needs to be
in a device header for a glcd.
The following lcd primitives must be defined
glcd_DevSelectChip(chip)
glcd_DevENstrobeHi(chip)
glcd_DevENstrobeLo(chip)
glcd_DevXval2Chip(x)
glcd_DevXval2ChipCol(x)
For devices that split set column into to 2 commands of hi/lo:
glcd_DevCol2addrlo(x) (x & 0xf) // lo nibble
glcd_DevCol2addrhi(x) (x & 0xf0) // hi nibble
*/
#ifndef GLCD_PANEL_DEVICE_H
#define GLCD_PANEL_DEVICE_H
/*
* define name for Device
*/
#define glcd_DeviceName "T6963"
/*
* Sanity check XXX config pins
*
* Help the user detect lipin configuration errors by
* detecting when defines are missing or are incorrect.
*
* Check for existence/non-existence of:
* glcdCSEL1
* glcdCSEL2
* glcdEN
* glcdE1
* glcdE2
*/
#if (CHIP_WIDTH < DISPLAY_WIDTH) && (CHIP_HEIGHT != DISPLAY_HEIGHT)
#error "T6963 CHIP_WIDTH < DISPLAY_WITDH but CHIP_HEIGHT != DISPLAY_HEIGHT"
#endif
#if (CHIP_HEIGHT < DISPLAY_HEIGHT) && (CHIP_WIDTH != DISPLAY_WIDTH)
#error "T6963 CHIP_HEIGHT < DISPLAY_HEIGHT but CHIP_WIDTH != DISPLAY_WIDTH"
#endif
#ifndef glcdCSEL1
#error "T6963 configuration missing glcdCSEL1"
#endif
#ifdef glcdEN
#error "T6963 configuration missing glcdEN"
#endif
#ifdef glcdE1
#error "T6963 configuration does not use glcdE1"
#endif
#ifdef glcdE2
#error "T6963 configuration does not use glcdE2"
#endif
/*
* LCD commands -------------------------------------------------------------
*/
#define LCD_ON
#define LCD_OFF
#define LCD_SET_ADD
#define LCD_DISP_START
#define LCD_SET_PAGE
/*
* Status register bits/flags -----------------------------------------------
*/
#define LCD_BUSY_FLAG
#define LCD_BUSY_BIT
/*
* Define primitives used by glcd_Device.cpp --------------------------------
*/
#define glcd_DevSelectChip(chip)
/*
* Define how to strob EN signals
*/
#define glcd_DevENstrobeHi(chip)
#define glcd_DevENstrobeLo(chip)
/*
* Define how to get low and how addresses
* (if needed)
*/
* Convert X & Y coordinates to chip values
*/
#define glcd_DevXYval2Chip(x,y)
#define glcd_DevXval2ChipCol(x)
/*
* Convert from chip column value to hi/lo address value
* for LCD commands.
* (If Needed)
*/
#define glcd_DevCol2addrlo(x)
#define glcd_DevCol2addrhi(x)
#endif //GLCD_PANEL_DEVICE_H
Thanks
Rinus