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