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 Torsten, > > wie Martin schon schreibt, handelt es sich nur um einen originalen Auszug von meinen Modul, welches > nur zur Veranschaulichung dient. > > > Hier mal noch eins, etwas abgespeckt und hoffentlich übersichtlicher. > > <code> > /****************************************************************************** > Eingsdaten erfassung vom Server > ******************************************************************************/ > > // Modulvariablen ************************************************************ > > thread ein232 > { > string s,b; > > > loop > { > s=" ";b=" "; > > > wait hwcom.rxd(); > hwcom.receive(s,10,20); > > > > /******************************************************************************* > Empfangsdaten für Digitale Befehle > *******************************************************************************/ > > > b="AD7010001E"; // ZikuPumpe EG auf Automatik > if strx.comp(s,b) {global.ZPE=0;continue;} > b="AD7010002E"; // ZikuPumpe EG auf Zwang EIN > if strx.comp(s,b) {global.ZPE=2;sleep 50;global.ZuZiPuEg=2;continue;} > b="AD7010003E"; // ZikuPumpe EG auf Zwang AUS > if strx.comp(s,b) {global.ZPE=1;sleep 50;global.ZuZiPuEg=1;continue;} > > > > b="AD7999998E"; // Software Reset des Systems > if strx.comp(s,b) { > quit -1;continue;} > > > b="AD7999999E"; // Hostmodus einleiten > if strx.comp(s,b) { > quit 63;continue;} > > > > > > > hwcom.flush(); > > }} > > </code> > > Rene