1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-29 13:49:14 +08:00

17 lines
218 B
Go
Raw Normal View History

2014-04-27 18:54:41 -07:00
package i2c
type TestAdaptor struct {
}
func (t TestAdaptor) I2cStart(byte) {
return
}
func (t TestAdaptor) I2cRead(uint16) []uint16 {
return []uint16{99, 1}
}
func (t TestAdaptor) I2cWrite([]uint16) {
return
}