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 ! > OK ich probiers mal, > > <code> > > //............................... > thread main > //............................ > { > string s; > int n,ad,d; > float U,R,Ist,Soll; > > station_io.init();station_io.Clear(); > station_lcd.init();station_lcd.clear(); > Soll=40; // hier wird für Soll beim Start auf 40 festgelegt > > // Programmschleife ******************************************* > loop > { > s=""; > U=0.004*ports.adc(1); > R=5/U-1; > Ist=1000/(math.ln(R)/4.3+1000/298)-273; > str.putfloatf(s,Ist,1); > s=s+ " Grad"; > > if Ist>Soll > {ports.set(8,1); // Port P0 Station Klemme 46 auf Hihg > station_lcd.clear();sleep 5;station_lcd.print(s); > station_lcd.line2();station_lcd.print("Port P0 EIN");} > > if Ist<Soll {ports.set(8,0); // Port P0 Station Klemme 46 auf Low > station_lcd.clear();sleep 5;station_lcd.print(s); > station_lcd.line2();station_lcd.print("Port P0 AUS");} > > > sleep 1000; > } > } > > </code>