AqualinkD/source/aq_timer.h

15 lines
524 B
C
Raw Normal View History

2023-05-14 21:35:13 +00:00
#ifndef AQ_TIMER_H_
#define AQ_TIMER_H_
#include "aqualink.h"
2024-06-10 22:27:01 +00:00
void start_timer(struct aqualinkdata *aq_data, /*aqkey *button,*/ int deviceIndex, int duration);
2023-05-16 16:17:42 +00:00
int get_timer_left(aqkey *button);
2024-06-10 22:27:01 +00:00
void clear_timer(struct aqualinkdata *aq_data, /*aqkey *button,*/ int deviceIndex);
2023-05-14 21:35:13 +00:00
// Not best place for this, but leave it here so all requests are in net services, this is forward decleration of function in net_services.c
#ifdef AQ_PDA
void create_PDA_on_off_request(aqkey *button, bool isON);
#endif
#endif // AQ_TIMER_H_