-
Notifications
You must be signed in to change notification settings - Fork 0
/
RelayControl.cpp
71 lines (65 loc) · 1.03 KB
/
RelayControl.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
#include "Arduino.h"
#include "RelayControl.h"
RelayControl::RelayControl(unsigned short pin, bool normallyClosed)
{
pinMode(pin, OUTPUT);
digitalWrite(_pin, LOW);
_pin = pin;
_flow = normallyClosed;
_normallyClosed = normallyClosed;
}
void RelayControl::off()
/*
Opens the relay. No matter what type it is, the function always stops the
current flow.
*/
{
if (_normallyClosed)
{
digitalWrite(_pin, HIGH);
_flow = false; //ON
}
else
{
digitalWrite(_pin, LOW);
_flow = false; //ON
}
}
void RelayControl::on()
/*
Closes the relay. No matter what type it is, the function always starts the
current flow.
*/
{
if (_normallyClosed)
{
digitalWrite(_pin, LOW);
_flow = true; //ON
}
else
{
digitalWrite(_pin, HIGH);
_flow = true; //ON
}
}
void RelayControl::flick()
/*
Turns ON if it is OFF and viceversa
*/
{
if (_flow)
{
off();
}
else
{
on();
}
}
bool RelayControl::isCircuitClosed()
/*
Returns True if current is flowing.
*/
{
return _flow;
}