diff --git a/drivers/tcs37727/tcs37727.c b/drivers/tcs37727/tcs37727.c index ca8aba669bd917de04cc86b92e5e44243c8ebc30..5dec081d5e9a130f0cb684947229bcc944c21b36 100644 --- a/drivers/tcs37727/tcs37727.c +++ b/drivers/tcs37727/tcs37727.c @@ -81,8 +81,8 @@ int tcs37727_init(tcs37727_t *dev, i2c_t i2c, uint8_t address, int atime_us) } dev->again = 4; - if (i2c_write_reg(dev->i2c, dev->addr, - TCS37727_ATIME_TO_REG(atime_us), 0) != 1) { + if (i2c_write_reg(dev->i2c, dev->addr, TCS37727_ATIME, + TCS37727_ATIME_TO_REG(atime_us)) != 1) { i2c_release(dev->i2c); return -3; }