Fix pro preklad
This commit is contained in:
parent
f8bc7a8360
commit
1356d845b3
@ -24,7 +24,7 @@ bool Interval::expired(void)
|
|||||||
bool result = false;
|
bool result = false;
|
||||||
if (_done)
|
if (_done)
|
||||||
{
|
{
|
||||||
if (1 == mode)
|
if (1 == _mode)
|
||||||
{ // oneshot mode
|
{ // oneshot mode
|
||||||
if ((millis() - _timefrom) >= _timeout)
|
if ((millis() - _timefrom) >= _timeout)
|
||||||
{
|
{
|
||||||
@ -32,7 +32,7 @@ bool Interval::expired(void)
|
|||||||
result = true;
|
result = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (2 == mode)
|
else if (2 == _mode)
|
||||||
{ // periodic mode
|
{ // periodic mode
|
||||||
if ((millis() - _timefrom) >= _timeout)
|
if ((millis() - _timefrom) >= _timeout)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user