hybridgroup.gobot/i2c/i2c.go

8 lines
112 B
Go

package gobotI2C
type I2cInterface interface {
I2cStart(byte)
I2cRead(uint16) []uint16
I2cWrite([]uint16)
}