mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-05-02 22:17:12 +08:00
8 lines
107 B
Go
8 lines
107 B
Go
package i2c
|
|
|
|
type I2cInterface interface {
|
|
I2cStart(byte)
|
|
I2cRead(uint16) []uint16
|
|
I2cWrite([]uint16)
|
|
}
|