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

Re: Problem mit 2W-Bus Kategorie: 2W-Bus (von Michael Rossner - 9.03.2006 20:42)
Als Antwort auf Problem mit 2W-Bus von Volker W - 28.02.2006 20:41
Ich nutze:
C-Control II Unit, CC2-Application-Board, CC2-ReglerBoard, OSOPT V3.0
Hallo Volker

versuchs mal damit


const NUM_OF_PIO = 3;
const PIO_ADRESS[] = 1,2,3;
const ALL_PORT_INPUT = 0;

thread main
{
 string text2;
 byte i;
 byte input;

 twb.init();
 for i = 0 ... NUM_OF_PIO-1
 {
   twbs.rwport(PIO_ADRESS[i],ALL_PORT_INPUT,0x0F);
 }
 lcdext.init();
 lcdext.clear();

 lcdext.goto(1,0);
 lcdext.print("TWB-TEST");

 loop
 {
  str.clear(text2);
  text2 = "V = ";
 
  for i = 0 ... NUM_OF_PIO-1
  {
    input = twbs.rwport(PIO_ADRESS[i],ALL_PORT_INPUT,0x0F);
    debug_info.AddInt(text2, input, -2);
    text2 = text2 + " : ";
  }
  lcdext.goto(2,0);
  lcdext.print(text2);
  sleep(2000);
 }
}

> Hallo Leute
> Ich versuche schon seit einiger Zeit mit Hilfe des Moduls "twbs" mehrere
> PIO 4 Busmodule abzufragen.
> Leider bin ich noch zu keinem Ergebnis gekommen.
> Ihr würdet mir mit einem Beispielprogrammausschnitt sehr helfen.
>
> GruÃ? Volker W


    Antwort schreiben


Antworten: