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 liebe User !!! > > Ich habe ein Problem ich habe ein Programm was auch wunderbar läuft,nun habe ich es um ein teil erweitert > ... das modul lampe2 was das relais 2 steuern soll. nun wenn ich das prg übertrage starte ich die station > und sie bleibt beim start hängen, weis einer woran das liegen könnte ??? ich letzte unten mal was rein. > das erste ist das funktionsfähige das 2 wo es nicht weiter geht , > > > /****************************************************************************** > Startprogramm mit Main Thread > ******************************************************************************/ > thread main > { > // Inistalieren der Stationtreiber und Display und Löschen > station_io.init();station_io.Clear(); // Stationstreiber > station_lcd.init();station_lcd.clear(); // Display > > // Licht am Dislay anschalten > station_io.LIGHTon(); > > > //Selbsttest und Setzen der Ausgänge auf AUS > station_lcd.clear();sleep 5; > station_lcd.print("System");station_lcd.line2(); > station_lcd.print("Selbsttest"); > station_io.RELoff(1);station_io.RELoff(2); > station_io.LEDoff(6);station_io.LEDoff(7);station_io.LEDoff(8); > > // Selbstest LED Station ---------------------------------------------- > station_io.LEDon(1);sleep 50;station_io.LEDon(2);sleep 50; > station_io.LEDon(3);sleep 50;station_io.LEDon(4);sleep 50; > station_io.LEDon(5);sleep 500; > > station_io.LEDoff(5);sleep 50; > station_io.LEDoff(4);sleep 50;station_io.LEDoff(3);sleep 50; > station_io.LEDoff(2);sleep 50;station_io.LEDoff(1);sleep 50; > > > // Setzen von Voreinstelungen ************************************************** > global.lampe1=0;global.dimmer1=0;global.prod1=0; > global.zustl1=0;global.zustd1=0; > global.betriebsart=1; // Automatikbetrieb > > // Starten der Module ********************************************************** > station_lcd.clear();sleep 5;station_lcd.print("System ist"); > station_lcd.line2();station_lcd.print("Betriebsbereit"); > sleep 1000; > run systemzeit.Systemzeit; > run tasten_station.Tasten_Station; > run lampe1.lampe1; > run dimmer.dimmer; > run zeituhr.zeituhr; > run display.display; > // Anhalten des Startthreads > halt main; > } > > > Nun das was nicht geht !!! > > > /****************************************************************************** > Startprogramm mit Main Thread > ******************************************************************************/ > thread main > { > // Inistalieren der Stationtreiber und Display und Löschen > station_io.init();station_io.Clear(); // Stationstreiber > station_lcd.init();station_lcd.clear(); // Display > > // Licht am Dislay anschalten > station_io.LIGHTon(); > > > //Selbsttest und Setzen der Ausgänge auf AUS > station_lcd.clear();sleep 5; > station_lcd.print("System");station_lcd.line2(); > station_lcd.print("Selbsttest"); > station_io.RELoff(1);station_io.RELoff(2); > station_io.LEDoff(6);station_io.LEDoff(7);station_io.LEDoff(8); > > // Selbstest LED Station ---------------------------------------------- > station_io.LEDon(1);sleep 50;station_io.LEDon(2);sleep 50; > station_io.LEDon(3);sleep 50;station_io.LEDon(4);sleep 50; > station_io.LEDon(5);sleep 500; > > station_io.LEDoff(5);sleep 50; > station_io.LEDoff(4);sleep 50;station_io.LEDoff(3);sleep 50; > station_io.LEDoff(2);sleep 50;station_io.LEDoff(1);sleep 50; > > > // Setzen von Voreinstelungen ************************************************** > global.lampe1=0;global.lampe2=0;global.dimmer1=0;global.prod1=0; > global.zustl1=0;global.zustd1=0; > global.betriebsart=1; // Automatikbetrieb > > // Starten der Module ********************************************************** > station_lcd.clear();sleep 5;station_lcd.print("Ich bin"); > station_lcd.line2();station_lcd.print("Betriebsbereit"); > sleep 1000; > run systemzeit.Systemzeit; > run tasten_station.Tasten_Station; > run lampe1.lampe1; > run lampe2.lampe2; > run dimmer.dimmer; > run zeituhr.zeituhr; > run display.display; > // Anhalten des Startthreads > halt main; > } > > > Ich hofee ihr könnt mir helfen,den aus fehlern lernt man wenn man gute meister hat !!! > > > Grüße Mike