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

17 lines
210 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(uint) []byte {
return []byte{99, 1}
}
func (t TestAdaptor) I2cWrite([]byte) {
return
}