diff --git a/i2c/i2c.go b/i2c/i2c.go index 352141f..8926b2a 100644 --- a/i2c/i2c.go +++ b/i2c/i2c.go @@ -20,6 +20,7 @@ const ( rd = 0x0001 ) +// A Bus implements access to the I2C two wire bus. type Bus interface { // Read a byte from the given address. ReadByte(addr byte) (value byte, err error)