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 Walter > > bitte benutze doch die Code Tags! > Als kleiner Denkanstoß habe ich dir mal ein paar Zeilen aufgeschrieben....... > > <code> > thread main > {int delta; > station_io.init(); > station_io.RELoff(1); > station_io.RELoff(2); > > loop > { > delta = ports.adc(0) - ports.adc(1); > if delta > 5// Einschlatbedingung Rechtslauf > {station_io.RELoff(1); // erst auschalten > station_io.RELon(2); // dann einschalten > } > else if delta < -5 // Einschlatbedingung Linkslauf > {station_io.RELoff(2); // erst ausschlten > station_io.RELon(1); // dann einschalten > } > else if math.abs(delta) <= 2 // alles ausschalten > {station_io.RELoff(1) // auschalten > station_io.RELoff(2) // Ausschalten > } > } > } > </code>