mirror of
https://github.com/grillbaer/esp32-geiger-counter.git
synced 2025-12-21 13:23:15 +01:00
10 lines
197 B
C
10 lines
197 B
C
#ifndef DISPLAY_H_
|
|
#define DISPLAY_H_
|
|
|
|
#include "GeigerData.h"
|
|
|
|
void initDisplay();
|
|
void updateDisplay(GeigerData &geigerData, char uSphStr[16], char cpmStr[16]);
|
|
|
|
#endif /* DISPLAY_H_ */
|