Adjust the brightness scaling of the entire screen.
(dev, b: int)
| 96 | |
| 97 | |
| 98 | def brightness(dev, b: int): |
| 99 | """Adjust the brightness scaling of the entire screen.""" |
| 100 | send_command(dev, CommandVals.Brightness, [b]) |
| 101 | |
| 102 | |
| 103 | def get_brightness(dev): |
no test coverage detected