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

Re: Loop´s und Loopings :o) Kategorie: Programmierung (von Sascha - 18.04.2006 4:54)
Als Antwort auf Re: Loop´s und Loopings :o) von krassos - 17.04.2006 8:47
Ich nutze:
C-Control II Station, OSOPT V3.0
Hallo zusammen,

habe ich das Beispiel richtig verstanden ?
Ich hab das mal ausprobiert, leider wird in der Schleife NUR auf die Taste gewartet,
der Rest wird leider nicht geloopt ?

Was mache ich den da noch falsch ?

GruÃ?
Sascha


function Pondisp()
{
pcflcd.goto(4,17);       // einmalige Textausgabe am LCD
pcflcd.print("Sek");
pcflcd.goto(4,13);
pcflcd.print("Min");
pcflcd.goto(4,9);
pcflcd.print("Std");
pcflcd.goto(4,5);
pcflcd.print("Tag");
pcflcd.goto(4,0);
pcflcd.print("Jahr");
x=-1;

   while x
   {

   pcflcd.goto(3,18);   // Das hier soll alles loopen...
   pcflcd.zahl2(T);
   pcflcd.goto(3,14);
   pcflcd.zahl2(A);
   pcflcd.goto(3,10);
   pcflcd.zahl2(B);
   pcflcd.goto(3,5);
   pcflcd.zahl3p(C);
   pcflcd.goto(3,2);
   pcflcd.zahl2(D);
   sleep 30;

   if pcfkeyb.getchar(0)==key_prev break; //UND soll auf eine Taste warten
   {x=0;continue;}
                   
   }
                 
}


    Antwort schreiben


Antworten:

Re: Loop´s und Loopings :o) (von krassos - 18.04.2006 15:03)
    Re: Loop´s und Loopings :o) (von Sascha - 18.04.2006 19:57)
        Re: Loop´s und Loopings :o) (von Sascha - 18.04.2006 20:39)
Re: Loop´s und Loopings :o) (von Sascha - 18.04.2006 4:57)