Zur Übersicht - INFO - Neueste 50 Beiträge - Neuer Beitrag - Suchen - FAQ - Zum CC1-Forum - Zum CC-Pro-Forum

Lcd Programmierung Kategorie: Programmierung (von Thomas - 16.08.2004 14:27)
Ich nutze:
C-Control II Unit, CC2-Application-Board, OSOPT V3.0
Hallo Alle Zusammen
Ich habe ein keines problem mit der Programmierung meines 4*16 lcds

das erste Problem:

 temp=ds1631.readi1(2);
 Temp="T= ";
 str.putint(Temp,temp/10);
 Temp=Temp+","+((temp%10+0x30));

 Temp=Temp+"°C";     << An dieser Stelle wird ein Minus ausgegeben und kein ° Zeichen
                                     woran kann das liegen ??
 lcdext.goto(3,-1);
 lcdext.print(Temp);

das zweite Problem

 str.putint(PHWERT,ports.adc(1));
 PHWERT=PHWERT+"ph";
 lcdext.goto(4,0);
 lcdext.print(PHWERT);  << Dieser zusammengesetzte String läuft auf dem Display von (4,0)
                                         nach rechts warum das denn nu??? oben ist doch auch nichts anders
                                         als oben.

Kann mir da jemand weiter helfen????

vielen dank Thomas


    Antwort schreiben


Antworten:

Re: Lcd Programmierung (von André H. - 18.08.2004 18:35)
    Re: Lcd Programmierung (von Thomas - 18.08.2004 20:29)
        Re: Lcd Programmierung (von André H. - 19.08.2004 9:28)
            Danke (von Thomas - 20.08.2004 21:27)
Re: Lcd Programmierung (von Gruenebe - 17.08.2004 12:49)
    Re: Lcd Programmierung (von Thomas - 18.08.2004 14:21)