-
Notifications
You must be signed in to change notification settings - Fork 0
/
GPIO.cpp
133 lines (111 loc) · 2.34 KB
/
GPIO.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#include <iostream>
#include <unistd.h>
#include <string>
#include <fstream>
#include "GPIO.h"
GPIO::GPIO(int num, int hold) {
number = num;
holdTime = hold;
name = "gpio" + std::to_string(number);
path = GPIO_PATH + name;
this->exportGPIO();
}
GPIO::~GPIO() {
this->unexportGPIO();
}
void GPIO::status() {
std::cout << "Status of " << name << "\n";
if (getDirection() == 0) {
std::cout << "\tDirection: IN\n";
}
else {
std::cout << "\tDirection: OUT\n";
}
if (getValue() == 0) {
std::cout << "\tValue: LOW\n";
}
else {
std::cout << "\tValue: HIGH\n";
}
}
void GPIO::setDirection(GPIO_DIRECTION dir) {
std::ofstream fs;
std::string dirPath = path + "/direction";
fs.open(dirPath);
if (dir == 0) {
fs << "in";
}
else {
fs << "out";
}
fs.close();
}
GPIO_DIRECTION GPIO::getDirection() {
std::ifstream fs;
std::string dirPath = path + "/direction";
fs.open(dirPath);
std::string dirVal;
fs >> dirVal;
fs.close();
if (dirVal == "in") {
return IN;
}
else {
return OUT;
}
}
void GPIO::setValue(GPIO_VALUE val) {
std::ofstream fs;
std::string valPath = path + "/value";
fs.open(valPath);
fs << val;
fs.close();
}
GPIO_VALUE GPIO::getValue() {
std::ifstream fs;
std::string valPath = path + "/value";
fs.open(valPath);
GPIO_VALUE val;
int svalue;
fs >> svalue;
if (svalue == 1) {
val = HIGH;
}
else {
val = LOW;
}
fs.close();
return val;
}
void GPIO::pulse(GPIO_VALUE pulseVal) {
if (pulseVal == 0) {
setValue(HIGH);
usleep(holdTime);
setValue(LOW);
usleep(holdTime);
setValue(HIGH);
}
else {
setValue(LOW);
usleep(holdTime);
setValue(HIGH);
usleep(holdTime);
setValue(LOW);
}
}
void GPIO::exportGPIO() {
std::ofstream fs;
std::string exportPath = GPIO_PATH + "export";
fs.open(exportPath);
std::string val = std::to_string(number);
fs << val;
fs.close();
}
void GPIO::unexportGPIO() {
std::ofstream fs;
std::string unexportPath = GPIO_PATH + "unexport";
fs.open(unexportPath);
std::string val = std::to_string(number);
fs << val;
fs.close();
}