** Function: setBrightness ** set brightness value **********************************************************************/
| 34 | ** set brightness value |
| 35 | **********************************************************************/ |
| 36 | void _setBrightness(uint8_t brightval) { |
| 37 | if (brightval > 100) brightval = 100; |
| 38 | axp192.ScreenBreath(brightval); |
| 39 | } |
| 40 | |
| 41 | /********************************************************************* |
| 42 | ** Function: InputHandler |
nothing calls this directly
no test coverage detected