Lines Matching full:brightness
17 * 1. The brightness of each LED can be configured directly by setting a
23 * - Set the brightness.
24 * - Fade the brightness over time.
80 /* Brightness limits in percent */
170 * brightness value instead of using the execution engines.
583 * @brief Program a command to set a fixed brightness to the given engine.
588 * @param brightness Brightness to be set for the LED in percent.
597 uint8_t brightness) in lp5562_program_set_brightness() argument
603 if ((brightness < dev_data->min_brightness) || in lp5562_program_set_brightness()
604 (brightness > dev_data->max_brightness)) { in lp5562_program_set_brightness()
608 val = (brightness * 0xFF) / dev_data->max_brightness; in lp5562_program_set_brightness()
615 * @brief Program a command to ramp the brightness over time.
625 * @param fade_dir Direction of the ramp (in-/decrease brightness).
702 * @brief Change the brightness of a running blink program.
713 * In order to change the brightness during blinking, we overwrite only
718 * @param brightness_on New brightness value.
721 * @retval -EINVAL If the engine ID or brightness is out of range.
840 * the passed brightness. in lp5562_led_set_brightness()