Re: Abfrage der Eingänge am PCF 8575 Kategorie: Programmierung (von Heribert.Sch - 9.04.2004 20:54) | ||
Als Antwort auf Abfrage der Eingänge am PCF 8575 von Heribert - 5.04.2004 8:12 | ||
| ||
Hallo, nun ja irgendwie klapt es immer noch nicht hier mein Beispiel : function get(byte addr,byte port) returns int {byte state,state2; i2c.cstart(AddrR[addr]); state=i2c.readlast(); if addr==0 state2=i2c.readlast(); i2c.stop(); if port <=7 return (state and (1 shl port))!=0; else return (state2 and (1 shl (port-8)))!=0; } thread lcd { loop { if get (0,15)!=0 pcflcd.setLight (1); }} was mach ich falsch ?? Mfg Heribert | ||
Antwort schreiben Antworten: Re: Abfrage der Eingänge am PCF 8575 (von André H. - 10.04.2004 15:24) |