ESP32-PaxCounter/include/corona.h

17 lines
327 B
C
Raw Normal View History

2020-09-01 16:26:30 +02:00
#ifndef _CORONA_h
#define _CORONA_H
// inspired by https://github.com/kmetz/BLEExposureNotificationBeeper
// (c) by Kaspar Metz
// modified for use in the Paxcounter by AQ
#include "globals.h"
#include <map>
bool cwa_init(void);
2020-09-03 16:37:51 +02:00
void cwa_mac_add(uint16_t hashedmac);
2020-09-01 16:26:30 +02:00
void cwa_clear(void);
uint16_t cwa_report(void);
#endif