Jetzt bin ich schon ein Stück weiter es zeigt mir mal etwas auf dem Display an,
ich habe das mit der Font versucht jetzt erscheinen Buchstaben auf dem GLCD aber nicht die wo möchte.
Ich möchte das auf dem GLCD "Test" erscheint aber irgendwie zeigt es mir "Tftu" an. Der Anfangsbuchstabe stimmt immer egal welches Wort ich eingebe aber der Rest nicht.

Habe ich möglicherweisen noch einen Initialisierung Fehler ??

Das mit dem Kontrast habe ich jetzt hinbekommen, ich habe es erst so versucht ohne den Anschluss18 aber es hat sich nichts gerührt erst als ich den Anschluss18 auch noch an das Poti anschloss habe ich den Kontrast einstellen können.


MFG

Ich stelle noch einmal den Code herein:
Code:
$regfile = "m16def.dat"
$crystal = 8000000                                    
$framesize = 35
$swstack = 35
$hwstack = 35
$lib "glcdKS108.lib"
$include "font8x8.font"


Wait 2

Config Graphlcd = 128 * 64sed , Dataport = Portd , Controlport = Portc , Ce = 0 , Ce2 = 1 , Cd = 2 , Rd = 3 , Reset = 5 , Enable = 4


'The dataport is the portname that is connected to the data lines of the LCD
'The controlport is the portname which pins are used to control the lcd
'CE =CS1 Chip select
'CE2=CS2 Chip select second chip
'CD=Data/instruction
'RD=Read
'RESET = reset
'ENABLE= Chip Enable



Cls

Do

Setfont Font8x8
Lcdat 5 , 5 , "Test"

Loop
End