Re: ExtLCD und RS232 LCD an SW-Com Kategorie: Sonstige Hardware (von Heiko - 21.03.2004 18:20) | ||
Als Antwort auf Re: ExtLCD und RS232 LCD an SW-Com von André H. - 21.03.2004 11:58 | ||
| ||
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. 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; } Gru� Heiko | ||
Antwort schreiben Antworten: Re: ExtLCD und RS232 LCD an SW-Com (von André H. - 28.03.2004 13:39) |