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