Hi,
I'm trying to compile sma_web from github GitHub - buehlems/sma_web: Arduino SMA Monitor and Web Publisher with TLG10UA03 or TLN13UA06 Wifi Module
It uses a library
#include <Ticker.h>
But I can't seem to track down this library, which appears to encapsulate timeouts (amongst other things)
e.g.
Ticker t((long)timeout);
..
..
while(!t.timeOut()){
..
t.begin();
..
}
Does anyone know where I can get this library?
Or what it does?
I suspect that all it does is get the millis() in the begin() method, and the timeOut() function compares the millis() recorded in begin(), but its possible it does something more complicated
Hence I'd rather find the library than try to re-write it based on no knowledge of how it operates
Thanks