-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSWLogic.cpp
73 lines (58 loc) · 982 Bytes
/
SWLogic.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include <Arduino.h>
#include "SWLogic.h"
SWTimer::SWTimer()
{
_start = millis();
_time = -1; // Negative time indicates timer deactivated
}
void SWTimer::timer( bool set, long time )
{
if ( set && _time<0 ) //Start timer if not already started
{
_start = millis();
_time = time;
}
if ( !set ) //Stop the timer
{
_time = -1;
}
}
bool SWTimer::value()
{
return _time>=0 && millis()-_start >= (unsigned long)_time ;
}
bool SWTimer::onDelay( bool set, long time )
{
timer( set, time );
return value();
}
//
//--------------------
//
bool SWKeep::keep( bool set, bool reset )
{
if ( set ) _state = true;
if ( reset ) _state = false;
return _state;
}
//
//--------------------
//
bool SWDifu::difU( bool set )
{
_state = set && !_pre;
_pre = set;
return ( _state );
}
//
//--------------------
//
bool SWDifd::difD( bool set )
{
_state = !set && _pre;
_pre = set;
return ( _state );
}
//
//--------------------
//