Hallo,
ich habe mir auch ein Touch geholt 128x64 aber ich versuche schon eine weile das Display anzusteuern.
Ich hänge immer noch bei dem Bascom Code und zwar kommt eine Fehlermeldung "Label not found (LCD Controlle)".
Was habe ich falsch ich komme einfach nicht mehr weiter ???
MFG
Der Code:
Code:
$regfile = "m16def.dat"
$crystal = 1000000
$lib "glcdKS108.lib"
Config Graphlcd = 128 * 64sed , Dataport = Portd , Controlport = Portc , Ce = 0 , Ce2 = 1 , Cd = 6 , 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
Cursor Off
Cls
Do
Locate 1 , 1
Lcd "Test"
End
Loop
Lesezeichen