Zur Übersicht - INFO - Neueste 50 Beiträge - Neuer Beitrag - Suchen - FAQ - Zum CC1-Forum - Zum CC-Pro-Forum

C – Control 2 an Visual Basic und C# Kategorie: CC2-Unit & Appl.Board / CC2-Station (von delphinhawe - 9.11.2006 23:04)
Ich nutze:
C-Control II Unit, CC2-Application-Board
Hallo,

ich bin hier neu im Forum.

Ich würde gerne wissen,
wie C â?? Control 2 den Befehl an Visual Basic und C# gibt,
wenn die Spannung über 3 Volt liegt bzw. unter 2 Volt liegt?
Dabei soll das Programm Visual Basic und C# die Bilder angezeigt werden,
z.B. bei über 3 Volt dann Rot-Bild und bei unter 2 Volt, dann Grün-Bild.
Zwischen 2 und 3 Volt nehme ich an so Blau-Bild. Sozusagen als Simulation.
Könnt ihr mir ein helfen und sagen wie das geht?

Anbei mein Programmtext für C-Control 2:


/**************************************************/
/*             Autor: delphinhawe                 */
/*             Zweipunktregler                    */
/*             Bemerkung: Einzelports             */
/*             Bezeichnung: ports                 */
/*             Funktion: set                      */
/**************************************************/

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);
  sleep 250;
   if U>3
   {
   ports.set(8,0);  //geöffnet d.h. SchlieÃ?er
   }
   if U<2
   {
   ports.set(8,1);   //geschlossen d.h. Ã?ffner
   }
 }
}


    Antwort schreiben


Antworten:

Re: C – Control 2 an Visual Basic und C# (von Mark - 10.11.2006 10:49)
    Re: C – Control 2 an Visual Basic und C# (von delphinhawe - 10.11.2006 14:24)
        Re: C – Control 2 an Visual Basic und C# (von Mark - 10.11.2006 14:46)
            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)