Files
Arduino-GSM-Chata/lib/Helper/Helper.h
T
Ondrej-Trochta e319e2db05 send sms working
2024-05-02 18:35:38 +02:00

18 lines
211 B
C++

#ifndef HELPER_H
#define HELPER_H
#include <limits.h>
#include <Arduino.h>
class Helper
{
private:
public:
Helper();
bool hasOverflowed();
unsigned long getElapsedTime(bool reset);
};
#endif