| 1 | #include "Ticker.h" |
| 2 | |
| 3 | Ticker::Ticker(Scheduler* aS, Task* aCalc, StatusRequest* aM) : Task(10000, TASK_FOREVER, aS, false) { |
| 4 | iCalc = aCalc; |
| 5 | iMeasure = aM; |
| 6 | } |
| 7 | |
| 8 | bool Ticker::Callback() { |
| 9 | Serial.println(); Serial.println(); Serial.println(); |
nothing calls this directly
no outgoing calls
no test coverage detected