| 75 | } |
| 76 | |
| 77 | ScreenshotApp::ScreenshotApp() { |
| 78 | updateTimer = std::make_unique<Timer>(Timer::Type::Periodic, 500 / portTICK_PERIOD_MS, [this] { |
| 79 | onTimerTick(); |
| 80 | }); |
| 81 | } |
| 82 | |
| 83 | ScreenshotApp::~ScreenshotApp() { |
| 84 | if (updateTimer->isRunning()) { |
nothing calls this directly
no outgoing calls
no test coverage detected