Re: 4 x 20 Zeichen LCD Kategorie: Sonstige Hardware (von Wolfgang - 29.10.2001 1:23) | |
Als Antwort auf Re: 4 x 20 Zeichen LCD von Muhli - 28.10.2001 19:48
| |
Hallo Muhli, Ich benutze die LcdExt2 und habe einfach den print befehl erweitert zuerst lcdext2.init() und dann versuche diese funktion, kopier sie in die lcdext2 Hi! function out(byte row,byte col,string s) { capture; byte a; if row == 0 LCD_WriteCommand(128 + col); if row == 1 LCD_WriteCommand(192 + col); if row == 2 LCD_WriteCommand(148 + col); if row == 3 LCD_WriteCommand(212 + col); for a=0...str.length(s)-1 put(strx.getchar(s,a)); release; } so hab meine Anzeigeprobleme gelöst! vielleicht hilfst. Wolfgang | |
Antwort schreiben Antworten: Re: 4 x 20 Zeichen LCD (von Muhli - 29.10.2001 21:19) |