7 Commits

6 changed files with 84 additions and 26 deletions

View File

@ -1,6 +1,6 @@
MIT License MIT License
Copyright (c) 2018 Copyright (c) 2014, 2016, 2018 Pavel Brychta http://www.xpablo.cz
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@ -1,2 +1,10 @@
# Interval # Intrval - Arduino knihovna pro časování pomocí intervalů
Arduino knihovna pro časování pomocí intervalů
Koncepce programové konstrukce aplikace pro Arduino spočívá ve dvou hlavních metodách **setup()** a **loop()**, ve které program neustále běží.
Pro pohodlnější práci s obsluhou periodických procesů jsem napsal jednoduchou knihovnu, která tyto úkoly umožňuje napsat velmi elegantním způsobem.
Knihovna **Interval** vytváří časovací objekty a zpřístupňuje dvě metody metodu **set** a metodu **expired**.
Metoda **set** se používá k nastavení timeoutu a definici začátku časování, metoda **expired** pak slouží k ověření, zda nastavený interval již vypršel.
Zajímavostí je, že knihovna korektně ošetřuje přetečení vnitřního milisekundového čítače, takže nehrozí nebezpečí špatného časování i při velmi dlouhé době chodu zařízení.

View File

@ -10,12 +10,12 @@
"repository": "repository":
{ {
"type": "git", "type": "git",
"url": "https://github.com/Pablo2048/Interval.git" "url": "http://git.xpablo.cz/pablo2048/Interval.git"
}, },
"version": "0.0.1", "version": "0.0.3",
"license": "MIT", "license": "MIT",
"frameworks": "arduino", "frameworks": "arduino",
"platforms": "espressif8266", "platforms": "*",
"build": { "build": {
"libCompatMode": 2 "libCompatMode": 2
} }

View File

@ -1,9 +1,9 @@
name=Interval name=Interval
version=0.0.1 version=0.0.3
author=Pavel Brychta author=Pavel Brychta
maintainer=Pavel Brychta maintainer=Pavel Brychta
sentence=Make timing by using intervals instead of delay() sentence=Make timing by using intervals instead of delay()
paragraph=Make timing by using intervals instead of delay() paragraph=Make timing by using intervals instead of delay()
category=Other category=Other
url=https://github.com/Pablo2048/Interval url=http://git.xpablo.cz/pablo2048/Interval
architectures=* architectures=*

View File

@ -10,27 +10,75 @@ extern "C" {
uint32_t Interval::remains(void) uint32_t Interval::remains(void)
{ {
return timeout - (millis() - timefrom); return _timeout - (millis() - _timefrom);
} }
uint32_t Interval::elapsed(void) uint32_t Interval::elapsed(void)
{ {
return millis() - timefrom; return millis() - _timefrom;
} }
bool Interval::expired(void) bool Interval::expired(void)
{ {
bool result = false;
if ((millis() - timefrom) >= timeout) if (_done)
return true; {
else if (1 == _mode)
return false; { // oneshot mode
if ((millis() - _timefrom) >= _timeout)
{
_done = 0;
result = true;
}
}
else if (2 == _mode)
{ // periodic mode
if ((millis() - _timefrom) >= _timeout)
{
result = true;
_timefrom = millis();
}
}
else
{ // compatibility mode
if ((millis() - _timefrom) >= _timeout)
result = true;
}
}
return result;
} }
void Interval::set(uint32_t tmout) void Interval::set(uint32_t tmout)
{ {
timefrom = millis(); _timefrom = millis();
timeout = tmout; _timeout = tmout;
_mode = 0;
_done = 0xff;
}
void Interval::setOneshot(uint32_t tmout)
{
_timefrom = millis();
_timeout = tmout;
_mode = 1;
_done = 0xff;
}
void Interval::setPeriodic(uint32_t tmout)
{
_timefrom = millis();
_timeout = tmout;
_mode = 2;
_done = 0xff;
}
void Interval::reload(void)
{
_timefrom = millis();
_done = 0xff;
} }

View File

@ -3,13 +3,9 @@
#define interval_h #define interval_h
/* Interval /* Interval
* Copyright (C) 2014, 2016 Pavel Brychta http://www.xpablo.cz * Copyright (C) 2014, 2016, 2018 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 * This program is free software: you can redistribute it and/or modify it under the terms of the MIT 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> #include <inttypes.h>
@ -17,11 +13,17 @@
class Interval class Interval
{ {
protected: protected:
uint32_t timefrom; uint32_t _timefrom;
uint32_t timeout; uint32_t _timeout;
uint8_t _mode; // mode of actual operation (compatibility, oneshot, periodic)
uint8_t _done;
public: public:
Interval(): _mode(0), _done(0xff) {}
bool expired(void); bool expired(void);
void set(uint32_t tmout); void set(uint32_t tmout);
void setOneshot(uint32_t tmout);
void setPeriodic(uint32_t tmout);
void reload(void);
uint32_t elapsed(void); uint32_t elapsed(void);
uint32_t remains(void); uint32_t remains(void);
}; };