Prvni ulozeni do githubu

This commit is contained in:
2018-04-05 20:21:38 +02:00
parent ad40b3a624
commit 79fa8ac00d
3 changed files with 126 additions and 0 deletions

36
src/interval.cpp Normal file
View File

@ -0,0 +1,36 @@
extern "C" {
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
}
#include <Arduino.h>
#include "interval.h"
// Public Methods //////////////////////////////////////////////////////////////
uint32_t Interval::remains(void)
{
return timeout - (millis() - timefrom);
}
uint32_t Interval::elapsed(void)
{
return millis() - timefrom;
}
bool Interval::expired(void)
{
if ((millis() - timefrom) >= timeout)
return true;
else
return false;
}
void Interval::set(uint32_t tmout)
{
timefrom = millis();
timeout = tmout;
}

30
src/interval.h Normal file
View File

@ -0,0 +1,30 @@
#ifndef interval_h
#define interval_h
/* Interval
* Copyright (C) 2014, 2016 Pavel Brychta http://www.xpablo.cz
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
* You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses
*/
#include <inttypes.h>
class Interval
{
protected:
uint32_t timefrom;
uint32_t timeout;
public:
bool expired(void);
void set(uint32_t tmout);
uint32_t elapsed(void);
uint32_t remains(void);
};
#endif
// EOF