17 lines
212 B
C++
17 lines
212 B
C++
#ifndef HELPER_H
|
|
#define HELPER_H
|
|
|
|
#include <limits.h>
|
|
#include <Arduino.h>
|
|
|
|
class Helper
|
|
{
|
|
private:
|
|
|
|
public:
|
|
Helper();
|
|
static bool hasOverflowed();
|
|
static unsigned long getElapsedTime();
|
|
};
|
|
|
|
#endif |