Re: I2C Routinen Kategorie: I²C-Bus (von TOM - 23.02.2005 8:18) | ||
Als Antwort auf Re: I2C Routinen von Epp - 22.02.2005 21:46 | ||
| ||
Hallo Epp, ich denke mal so in etwa //------------------------------------------- function direction (byte motor, byte direct) //------------------------------------------- { /* Motor Drehrichtung */ i2c.cstart(0x56); waitI2C_Ready(); i2c.write (10); waitI2C_Ready(); i2c.write (04); waitI2C_Ready(); i2c.write (motor); waitI2C_Ready(); i2c.write (direct); waitI2C_Ready(); i2c.write (0); waitI2C_Ready(); i2c.stop(); waitI2C_Ready(); } aber so ganz durchblicke ich diese inline Funktion auch nicht. Einfach mal ausbrobieren. Evtl auch: wait waitI2C_Ready(); aber das macht eigentlich nicht so Sinn, wenn der Funktionsname logisch ist. mfg Tom | ||
Antwort schreiben Antworten: |