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 krassos - 18.04.2006 15:03)
Als Antwort auf Re: Loop´s und Loopings :o) von Sascha - 18.04.2006 4:54
Ich nutze:
C-Control II Unit, CC2-ReglerBoard, 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 so sollte was gehen
>    {x=0;continue;}  //die schleife wird verlassen bei getchar(0)==key_prev
>                    
>    }
>                  
> }
>


    Antwort schreiben


Antworten:

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)