1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-08 19:29:16 +08:00

8 lines
107 B
Go
Raw Normal View History

2014-04-27 18:54:41 -07:00
package i2c
type I2cInterface interface {
I2cStart(byte)
I2cRead(uint16) []uint16
I2cWrite([]uint16)
}