** Function: setBrightness ** location: settings.cpp ** set brightness value **********************************************************************/
| 30 | ** set brightness value |
| 31 | **********************************************************************/ |
| 32 | void _setBrightness(uint8_t brightval) { |
| 33 | uint8_t _tmp = (255 * brightval) / 100; |
| 34 | M5.Lcd.setBrightness(_tmp); |
| 35 | } |
| 36 | |
| 37 | /********************************************************************* |
| 38 | ** Function: InputHandler |
nothing calls this directly
no outgoing calls
no test coverage detected