UVControl/src/ExposureTimer.h

16 lines
273 B
C
Raw Normal View History

2017-11-26 19:22:15 +00:00
#ifndef __ExposureTimer
#define __ExposureTimer
#include "Arduino.h"
extern unsigned int ExposureTime;
extern unsigned long ExposureTimerStart;
void ResetExposureTime();
void StartExposureTimer(unsigned long currentTime);
String FormatTime(unsigned int Time);
2017-11-26 19:22:15 +00:00
#endif