Re: Wie fragt man Stellung der Relais (rbports) Kategorie: Programmierung (von krassos - 14.11.2003 16:33) | |
Als Antwort auf Re: Wie fragt man Stellung der Relais (rbports) von Michael - 13.11.2003 21:35
| |
Hallo, es gibt hier noch einen klitzekleinen Fehler: > string txtaus; > int i; > byte x; > byte k; > > for i = 0 ... 15 { > txtaus="R"; > str.putint(txtaus,i); > txtaus=txtaus + ":" + rbports.get(i); Hier versuchst Du ein Byte an einen String anzuhängen!! ersetz einfach diese Zeile durch: txtaus=txtaus + ":" str.putint(txtaus,rbports.get(i)); Gruss krassos > hwcom.print(txtaus); > hwcom.ret(); > } > txtaus="ALLE-R:"; > x=rbports.getb(1); > for k=0 ... 7 { > if x and (1 shl k) txtaus=txtaus + "1"; > else txtaus=txtaus + "0"; > } > hwcom.print(txtaus); > hwcom.ret(); > > Danke für Deine Hilfe. > > Gru� > Michael H. > | |
Antwort schreiben Antworten: Re: Wie fragt man Stellung der Relais (rbports) (von Michael - 14.11.2003 23:34) Re: Wie fragt man Stellung der Relais (rbports) (von André H. - 16.11.2003 23:34) |