/* Name: PropAction.h Created: 29/10/2019 09:20:31 Author: Marie Faure Editor: https://github.com/fauresystems License: MIT License (c) Marie Faure Provide an easy way of triggering functions at a set interval. */ #ifndef PROPSACTION_H #define PROPSACTION_H #if defined(ARDUINO) && ARDUINO >= 100 #include "arduino.h" #else #include "WProgram.h" #endif class Props; class PropAction { public: PropAction(); PropAction(unsigned long interval, void (*function)()); void reset(unsigned long interval); void disable(); void enable(); void check(); bool tick(); unsigned long getInterval(); private: bool _active; unsigned long _previous; unsigned long _interval; void (*_execute)(); }; #endif