Hi,
I am trying to control the brightness of flash led using the below api
device_flash_set_brightness();
I am getting the max brightness of the flash led from the api
device_flash_get_max_brightness(&max_brightness);
When i set brightness level other than max_brightness, it doesn't work. The led is on if i pass max_brightness to the set_brightness api and the led is off if i pass 0. Its like either the led will be on or off and the brightness is not varying between 0 ~ max_brightness. If i pass values between 0 ~ max_brightness nothing happens.
Is brightness level supported and is there a different way to do it?