bei Mikrocontroller hat einer eine Lößung gefiunden:


$regfile = "m32def.dat"
$crystal = 16000000


Config Lcd = 40 * 4
Config Lcdpin = Pin , Db4 = Portd.0 , Db5 = Portd.1 , Db6 = Portd.2 ,
Db7 = Portd.3 , E = Portd.5 , E2 = Portd.6 , Rs = Portd.4

Config Lcdbus = 4

Dim ___lcdno As Byte

___lcdno = 0
Initlcd
Cls
___lcdno = 1
Initlcd
Cls

___lcdno = 0
Cursor Off
Cls
Locate 1 , 1
Lcd "Zeile 1"
Locate 2 , 1
Lcd "Zeile 2"

___lcdno = 1
Cursor Off
Cls
Locate 1 , 1
Lcd "Zeile 3"
Locate 2 , 1
Lcd "Zeile 4"

End