2019-01-20 22:39:26 +01:00
|
|
|
#ifndef _IF482_H
|
|
|
|
#define _IF482_H
|
|
|
|
|
|
|
|
#include "globals.h"
|
2019-02-25 20:22:03 +01:00
|
|
|
#include "timekeeper.h"
|
2019-01-27 18:19:25 +01:00
|
|
|
|
2019-02-17 19:21:08 +01:00
|
|
|
#define IF482_FRAME_SIZE (17)
|
|
|
|
#define IF482_PULSE_LENGTH (1000)
|
|
|
|
|
2019-02-25 20:22:03 +01:00
|
|
|
extern HardwareSerial IF482;
|
2019-02-16 15:02:07 +01:00
|
|
|
|
|
|
|
void IF482_Pulse(time_t t);
|
2019-02-17 19:21:08 +01:00
|
|
|
String IRAM_ATTR IF482_Frame(time_t tt);
|
2019-01-20 22:39:26 +01:00
|
|
|
|
|
|
|
#endif
|