Für dieses Forum muß Javascript im Browser aktiviert werden!
Kommentar: Einfügen von HTML im Kommentar: Link einfügen: <a href="LINKURL" target="_blank">LINKTITEL</a> Bild einfügen: <img src="BILDURL"> Text formatieren: <b>fetter Text</b> <i>kursiver Text</i> <u>unterstrichener Text</u> Kombinationen sind auch möglich z.B.: <b><i>fetter & kursiver Text</i></b> C2 Quellcode formatieren: <code>Quellcode</code> ASM Quellcode formatieren: <asm>Quellcode</asm> (Innerhalb eines Quellcodeabschnitts ist kein html möglich.) Wichtig: Bitte mache Zeilenumbrüche, bevor Du am rechten Rand des Eingabefeldes ankommst ! > > 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 > > > > <code> > > 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 > > > > } > > > > } > > </code>