Reputation: 7312
Is it possible to set the backlight or brightness of an amazon firetv programmatically via adb?
After searching on the amazon firetv app store there appears to be an app that is capable of updating the backlight and brightness, so I assume there must be an android/firetv API to do so. Is there a way to achieve this using an adb command?
Upvotes: 1
Views: 110
Reputation: 2547
It should work with
adb shell settings put system screen_brightness <VALUE>
Upvotes: 0