mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-04-27 13:48:56 +08:00
8 lines
101 B
Go
8 lines
101 B
Go
package i2c
|
|
|
|
type I2cInterface interface {
|
|
I2cStart(byte)
|
|
I2cRead(uint) []byte
|
|
I2cWrite([]byte)
|
|
}
|