ESP32-PaxCounter/include/if482.h

17 lines
282 B
C
Raw Normal View History

#ifndef _IF482_H
#define _IF482_H
2022-02-22 13:11:46 +01:00
#ifdef HAS_IF482
#include "globals.h"
2021-05-09 00:02:41 +02:00
#include "timekeeper.h"
2022-01-23 21:12:28 +01:00
#include "esp_sntp.h"
#define IF482_FRAME_SIZE (17)
2019-07-24 20:51:17 +02:00
#define IF482_SYNC_FIXUP (10) // calibration to fixup processing time [milliseconds]
2022-01-16 19:43:06 +01:00
String IF482_Frame(time_t t);
2022-02-22 13:11:46 +01:00
#endif
#endif