hybridgroup.gobot/platforms/i2c/i2c.go

8 lines
101 B
Go
Raw Normal View History

2014-04-28 09:54:41 +08:00
package i2c
type I2cInterface interface {
I2cStart(byte)
I2cRead(uint) []byte
I2cWrite([]byte)
}