ESP32-PaxCounter/include/if482.h

16 lines
335 B
C
Raw Normal View History

#ifndef _IF482_H
#define _IF482_H
#include "globals.h"
#define IF482_FRAME_SIZE (17)
#define IF482_PULSE_LENGTH (1000)
2019-02-16 15:02:07 +01:00
extern HardwareSerial IF482;
void IF482_Pulse(time_t t);
String IRAM_ATTR IF482_Frame(time_t tt);
2019-02-16 15:02:07 +01:00
TickType_t tx_Ticks(unsigned long baud, uint32_t config, int8_t rxPin,
int8_t txPins);
#endif