Re: C – Control 2 an Visual Basic und C# Kategorie: CC2-Unit & Appl.Board / CC2-Station (von Mark - 10.11.2006 14:46) | ||
Als Antwort auf Re: C – Control 2 an Visual Basic und C# von delphinhawe - 10.11.2006 14:24 | ||
| ||
Hallo delphinhawe, ich würde es evtl. so versuchen. Allerdings weis ich nicht mehr genau, wie es mit der Auswertung in VB war. Benutzt Du die VB Express Edition? Mit der hatte ich mal etwas ähnliches versucht. Du brauchst die Daten "nur" einlesen und auswerten. Das "nur" hatte ich mit der internen Hilfe von VB Express hinbekommen. thread main { string Kette; float U; lcdext.init(); loop { lcdext.clear(); U=ports.adc(0)*0.004; Kette="Wert="; str.putfloatf(Kette,U,3); str.putchar(Kette, 'V'); lcdext.print(Kette); if U>3 { ports.set(8,0); //geöffnet d.h. Schlie�er hwcom.put(80); } if U<2 { ports.set(8,1); //geschlossen d.h. �ffner hwcom.put(81); } sleep 250; } } hoffe ich konnte Dir ein wenig helfen, evtl. schaue ich heute Abend noch mal nach, wie es mit VB funzte. Vieleicht finde ich ja noch etwas. Gru� Mark. | ||
Antwort schreiben Antworten: Re: C – Control 2 an Visual Basic und C# (von delphinhawe - 12.11.2006 18:34) Re: C – Control 2 an Visual Basic und C# (von Clemens - 13.11.2006 8:33) Re: C – Control 2 an Visual Basic und C# (von delphinhawe - 16.11.2006 21:52) |