| 73 | volatile uint16_t tftWidth = TFT_HEIGHT; |
| 74 | TaskHandle_t xHandle; |
| 75 | void __attribute__((weak)) taskInputHandler(void *parameter) { |
| 76 | auto timer = launcherMillis(); |
| 77 | while (true) { |
| 78 | checkPowerSaveTime(); |
| 79 | if (!AnyKeyPress || launcherMillis() - timer > 75) { |
| 80 | resetGlobals(); |
| 81 | #ifndef DONT_USE_INPUT_TASK |
| 82 | InputHandler(); |
| 83 | #endif |
| 84 | timer = launcherMillis(); |
| 85 | } |
| 86 | vTaskDelay(pdMS_TO_TICKS(10)); |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | // More 2nd grade global Variables |
| 91 | int dimmerSet = 20; |
nothing calls this directly
no test coverage detected