-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRelay.cpp
executable file
·52 lines (37 loc) · 980 Bytes
/
Relay.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
#include "Relay.h" //To know functions declarations of Relay Class.
//Sets the pin number for relay.
Relay& Relay::setPinNumber(uint8_t pin)
{
this->pin = pin;
return (*this);
}
//Returns the pin number.
uint8_t Relay::getPinNumber()
{
return pin;
}
//Sets the pin mode as INPUT, INPUT_PULLUP or OUTPUT.
Relay& Relay::setPinMode(uint8_t mode)
{
if ( mode == INPUT ) pinMode(pin, INPUT);
else if ( mode == INPUT_PULLUP ) pinMode(pin, INPUT_PULLUP);
else if ( mode == OUTPUT ) pinMode(pin, OUTPUT);
return (*this);
}
//Writes digital HIGH or digital LOW.
Relay& Relay::write(uint8_t val)
{
( val == HIGH )? digitalWrite(pin, HIGH) : digitalWrite(pin, LOW);
return (*this);
}
//Sets the status of the relay.
Relay& Relay::setStatus(bool status)
{
this->status = status;
return (*this);
}
//Returns the status of the relay.
uint8_t Relay::getStatus()
{
return status;
}