Für dieses Forum muß Javascript im Browser aktiviert werden!
Kommentar: Einfügen von HTML im Kommentar: Link einfügen: <a href="LINKURL" target="_blank">LINKTITEL</a> Bild einfügen: <img src="BILDURL"> Text formatieren: <b>fetter Text</b> <i>kursiver Text</i> <u>unterstrichener Text</u> Kombinationen sind auch möglich z.B.: <b><i>fetter & kursiver Text</i></b> C2 Quellcode formatieren: <code>Quellcode</code> ASM Quellcode formatieren: <asm>Quellcode</asm> (Innerhalb eines Quellcodeabschnitts ist kein html möglich.) Wichtig: Bitte mache Zeilenumbrüche, bevor Du am rechten Rand des Eingabefeldes ankommst ! > Hallo Andrè, > > hier sind die beiden Threads, so wie sie aus Deinem Posting stammen. > Da das EA-GE120 anders angesteuert wird, kann ich natürlich nicht mit dem > Touch-LCD Modul arbeiten. Die Änderungen bestehen aber lediglich darin, > daß das 'ESC' am Anfang der Befehle entfällt und bei der text-Funktion kein > Richtungsparameter dabei ist. > > > <code> > > > thread lcd //Darstellung auf extLCD > { > lcdext.line(1); > lcdext.time(1); > lcdext.line(2); > lcdext.date(1); > lcdext.line(3); > lcdext.zahl4n1(temp1); > lcdext.put(0xDF); > lcdext.put('C'); > sleep 150; > } > > thread LCD_1 // Darstellung auf Grafik LCD1 > {string s; > int datum[4]; > ge120lcd.text(5,23,t1,6); > > pcf8583.getTime(zeit); > > s=""; > str.putintf(s,zeit.hour,2); > s=s+':'; > str.putintf(s,zeit.minute,2); > s=s+':'; > str.putintf(s,zeit.second,2); > ge120lcd.text(5,4,s,10); > > pcf8583.getDate(datum); > s=""; > str.putintf(s,datum[0],2); > s=s+'.'; > str.putintf(s,datum[1],2); > s=s+'.'; > str.putint(s,datum[2]); > ge120lcd.text(5,14,s,10); > > s=""; > str.putint(s,system.dcferr()); > ge120lcd.text(80,23,s,6); > sleep 300; > } > > </code> > > Gruß Heiko