csleeptimer/sleeptimer.h

10 lines
163 B
C

#ifndef __SLEEPTIMER_H
#define __SLEEPTIMER_H
#include "actions.h"
#include <stdbool.h>
bool sleeptimer(unsigned long seconds, actionCallback callback);
#endif