Re: Temperatur steuerung die zweite Kategorie: CC2-Unit & Appl.Board / CC2-Station (von Rene Forster - 7.10.2004 22:07) | |
Als Antwort auf Re: Temperatur steuerung die zweite von krassos - 7.10.2004 21:17
| |
OK ich probiers mal, //............................... 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; } } | |
Antwort schreiben Antworten: ja voll korrekt - staun !! (von Rene Forster - 7.10.2004 22:08) Re: ja voll korrekt - staun !! (von Mario - 9.10.2004 12:39) Re: ja voll korrekt - staun !! (von Rene Forster - 9.10.2004 19:20) |