It seems that there are no APIs in MRTK to control the brightness of Hololens1鈥榮 screen.
Instead of using the Brightness up/down button, can we adjust it through code?
For example, setting brightness from 0% to 100% maybe something like this below:
CoreServices.XXX.XXX.setBrightness(int percentage)
CoreServices.XXX.XXX.getBrightness()
Thanks!
This does not currently exist in MRTK but you can use the UWP API, BrightnessOverride
https://docs.microsoft.com/en-us/uwp/api/windows.graphics.display.brightnessoverride
This does not currently exist in MRTK but you can use the UWP API, BrightnessOverride
https://docs.microsoft.com/en-us/uwp/api/windows.graphics.display.brightnessoverride
Thank you!
Most helpful comment
This does not currently exist in MRTK but you can use the UWP API, BrightnessOverride
https://docs.microsoft.com/en-us/uwp/api/windows.graphics.display.brightnessoverride
Example:
https://github.com/KevinKennedy/BrightnessOverride