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!! > Ich habe dass Programm auf meine bedürfnisse angepasst, habe aber noch Probleme mit dem main > thread... wo füge ich ihn richtig ein dass er mir beim kompilieren nicht meckert... > MfG > > > > //------------ > thread main > //------------ > > //------------------------------------------------------------------------ > function abfrageDrehgeber (int wert,int min,int max,byte cur) > //------------------------------------------------------------------------ > > { > //position=ports.getb(8); > min = 2; > max = 99; > wert = 50; > > long position; > long position_alt; > > while not inkremental.getPushKey() > { > position=inkremental.get_position(); > if position < position_alt-10 > { > position_alt=position; > wert=wert-1; > if wert==min-1 wert=max; > lcdext.goto(0,3); > lcdext.zahl2(wert); > lcdext.cursorleft(); > } > else if position > position_alt+10 > { > position_alt=position; > wert=wert+1; > if wert==max+1 wert=1; > > lcdext.goto(0,3); > lcdext.zahl2(wert); > > > lcdext.cursorleft(); > } > } > } >