Files
Arduino-GSM-Chata/lib/Helper/Helper.h
T
2024-04-24 03:29:50 +02:00

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