UVControl/src/ExposureTimer.h
Mark van Renswoude 3d68f483ce PlatformIO folder structure
Moved and renamed files, not compiled yet
2017-11-27 15:28:00 +01:00

14 lines
234 B
C

#ifndef __ExposureTimer
#define __ExposureTimer
#include "Arduino.h"
extern unsigned int ExposureTime;
extern unsigned long ExposureTimerStart;
void ResetExposureTime();
void StartExposureTimer(unsigned long currentTime);
#endif