1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-04 22:17:39 +08:00
2014-11-19 16:56:48 -08:00

8 lines
159 B
Go

package i2c
type I2cInterface interface {
I2cStart(address byte) (err error)
I2cRead(len uint) (data []byte, err error)
I2cWrite(buf []byte) (err error)
}