mirror of
https://github.com/grillbaer/esp32-geiger-counter.git
synced 2025-12-21 21:33:03 +01:00
11 lines
189 B
C
11 lines
189 B
C
#ifndef INGEST_H_
|
|
#define INGEST_H_
|
|
|
|
#include "GeigerData.h"
|
|
|
|
void initIngest();
|
|
void deinitIngest();
|
|
void ingest(GeigerData &geigerData, uint16_t intervalSamples);
|
|
|
|
#endif /* INGEST_H_ */
|