1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-01 13:48:57 +08:00

8 lines
159 B
Go
Raw Normal View History

2014-04-27 18:54:41 -07:00
package i2c
type I2cInterface interface {
2014-11-19 16:56:48 -08:00
I2cStart(address byte) (err error)
I2cRead(len uint) (data []byte, err error)
I2cWrite(buf []byte) (err error)
}