Fix setting the LTP305 brightness
This commit is contained in:
parent
69d5afb5c5
commit
b0d7f4c611
|
@ -27,8 +27,8 @@ namespace pimoroni {
|
||||||
return i2c->get_scl();
|
return i2c->get_scl();
|
||||||
}
|
}
|
||||||
|
|
||||||
void LTP305::set_brightness(uint8_t brightness, bool update) {
|
void LTP305::set_brightness(uint8_t brightness_, bool update) {
|
||||||
brightness = std::min((uint8_t)MAX_BRIGHTNESS, brightness);
|
brightness = std::min((uint8_t)MAX_BRIGHTNESS, brightness_);
|
||||||
if(update)
|
if(update)
|
||||||
i2c->reg_write_uint8(address, CMD_BRIGHTNESS, brightness);
|
i2c->reg_write_uint8(address, CMD_BRIGHTNESS, brightness);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue