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

Re: Software hängt nach lcd.init() oder lcdext.init() Kategorie: Programmierung (von reneforster, http://www.rene-forster.de/Control - 8.12.2004 21:37)
Als Antwort auf Software hängt nach lcd.init() oder lcdext.init() von Jörg - 8.12.2004 16:36
Ich nutze:
C-Control II Station, OSOPT V3.0
Hat das Display schon mal funktioniert ?
Mit diesem Quellcode ?
Glaube ich nicht.

Probier mal folgendes und poste mal das Ergebniss. Es sollte jetzt so etwa im Sekundentakt
ein Ton ausgeben werden und die Nummer am Display hochgezählt.
Programm ist aber nicht getestet und Integer Zähler geht in �berlauf - aber solange wirst ja nicht testen.


thread main

{
int z;z=0;
string a;


lcdext.init();lcdext.clear();
lcdext.print("Programmstart");
lcdext.line(2);
lcdext.print("los gehts");
sleep 3000;
plm.beep(plm.TONE_A);sleep 100;plm.beep (plm.TONE_OFF);


loop
{
z=z+1;
a="Nr. ";
str.putint(a,z);
lcdext.clear();lcdext.print("Tonausgabe");
lcdext.line(2);lcdext.print(a);
plm.beep(plm.TONE_A);sleep 250;plm.beep (plm.TONE_OFF);
sleep 750;
}}



Rene

Meine Seite: http://www.rene-forster.de/Control


    Antwort schreiben


Antworten:

Re: Software hängt nach lcd.init() oder lcdext.init() (von Jörg - 9.12.2004 7:44)