Hallo,

ganz einfach den Standart code von Bascom.

Showpic 1 , 1 , bild
Wait 3
Lcdat 3 , 1 , "0"

Lcdat funktioniert , showpic nicht.

Ich dachte eher dass es nicht am Code selbst liegt sondern an
irgend ein timing problem.

danke fuer deine Antwort
Josef



$regfile = "m16def.dat"
$crystal = 1000000 'Taktfrequenz (Hz) festlegen
$hwstack = 100 'Hardware Stack
$swstack = 100 'Software Stack
$framesize = 100 'Framsize
$lib "glcdks108.lib"
'
'--variable-------------------------------------------------------------------------------------------------------
'
'Initialisierung LCD
Config Graphlcd = 128 * 64sed , Dataport = Portb , Controlport = Portc , Ce = 4 , Ce2 = 3 , Cd = 0 , Rd = 1 , Reset = 5 , Enable = 2
Cls
Setfont Font8x8

Showpic 1 , 1 , bild
Wait 3

Lcdat 3 , 1 , "0"
'
'
$include "font8x8.font"
$include "font16x16.font"

bild:
$bgf "hallo.bgf"
'--end source code----------------------------------------------