2019-01-20 22:39:26 +01:00
|
|
|
#ifndef _IF482_H
|
|
|
|
#define _IF482_H
|
|
|
|
|
|
|
|
#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"
|
2019-01-27 18:19:25 +01:00
|
|
|
|
2019-02-17 19:21:08 +01:00
|
|
|
#define IF482_FRAME_SIZE (17)
|
2019-07-24 20:51:17 +02:00
|
|
|
#define IF482_SYNC_FIXUP (10) // calibration to fixup processing time [milliseconds]
|
2019-02-17 19:21:08 +01:00
|
|
|
|
2022-01-16 19:43:06 +01:00
|
|
|
String IF482_Frame(time_t t);
|
2019-01-20 22:39:26 +01:00
|
|
|
|
|
|
|
#endif
|