15 lines
252 B
C
15 lines
252 B
C
#ifndef _IF482_H
|
|
#define _IF482_H
|
|
|
|
#include "globals.h"
|
|
#include "timekeeper.h"
|
|
|
|
#define IF482_FRAME_SIZE (17)
|
|
#define IF482_PULSE_LENGTH (1000)
|
|
|
|
extern HardwareSerial IF482;
|
|
|
|
void IF482_Pulse(time_t t);
|
|
String IRAM_ATTR IF482_Frame(time_t tt);
|
|
|
|
#endif |