Create corona.h

added: CWA-handling
This commit is contained in:
August Quint 2020-09-01 16:26:30 +02:00 committed by GitHub
parent 9c1d03d886
commit f1bf16bd74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

16
include/corona.h Normal file
View File

@ -0,0 +1,16 @@
#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);
bool cwa_mac_add(uint8_t *);
void cwa_clear(void);
uint16_t cwa_report(void);
#endif