Re: Loop´s und Loopings :o) Kategorie: Programmierung (von Sascha - 18.04.2006 19:57) | ||
Als Antwort auf Re: Loop´s und Loopings :o) von krassos - 18.04.2006 15:03 | ||
| ||
Hallo Krassos und liebe Helfende :o) es geht leider immer noch nicht :o( Die Schleife wird zwar verlassen, wenn ich das will, aber es wird bis dahin nichts geloopt.... ich poste mal den gesamten abschnitt, vielleicht erkennt man dann, warum es nicht geht.... Danke für Eure Geduld :o) Gru� Sascha function Extra2() { fx.del(); // löscht das Display loop { int Key; Key=pcfkeyb.getchar(0); if Key==key_F1 { fx.del(); pcflcd.line(1); pcflcd.print(" Power on Time "); // einmalige Textausgabe am LCD pcflcd.goto(4,17); 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...tut´s aber nich :o) 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 Key==key_prev // hier soll es weitergehen (funktioniert auch) { x=0; continue; } } } if Key==key_F4 { string i; system.getOSInfo(i); fx.del(); pcflcd.line(1); pcflcd.print(" System Info "); pcflcd.line(3); pcflcd.print(i); dummy(); } else { fx.del(); pcflcd.line(2); pcflcd.print("<- Extras 2 ->"); pcflcd.line(4); pcflcd.print("OnTime SysINFO"); } if Key==key_prev break; // Back if Key==key_next Extra3(); } } | ||
Antwort schreiben Antworten: Re: Loop´s und Loopings :o) (von Sascha - 18.04.2006 20:39) |