-
Notifications
You must be signed in to change notification settings - Fork 0
/
Htu21dDrv.cpp
executable file
·173 lines (121 loc) · 4.19 KB
/
Htu21dDrv.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/**
* \file Htu21dDrv.cpp
*
* Created by Scott Erholm on 6/14/16.
* Copyright (c) 2016 Agilatech. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
#include "Htu21dDrv.h"
Htu21dDrv::Htu21dDrv(std::string devfile, uint32_t addr):i2cbus::I2CDevice(devfile,addr) {
if (initialize()) {
this->active = true;
}
else {
std::cerr << name << " did not initialize. " << name << " is inactive" << std::endl;
}
}
std::string Htu21dDrv::getVersion() {
return name + " " + version;
}
std::string Htu21dDrv::getDeviceName() {
return name;
}
std::string Htu21dDrv::getDeviceType() {
return type;
}
int Htu21dDrv::getNumValues() {
return numValues;
}
std::string Htu21dDrv::getTypeAtIndex(int index) {
if ((index < 0) || (index > (numValues - 1))) {
return "none";
}
return valueTypes[index];
}
std::string Htu21dDrv::getNameAtIndex(int index) {
if ((index < 0) || (index > (numValues - 1))) {
return "none";
}
return valueNames[index];
}
bool Htu21dDrv::isActive() {
return this->active;
}
std::string Htu21dDrv::getValueByName(std::string name) {
for (int i = 0; i < numValues; i++) {
if (name == valueNames[i]) {
return this->getValueAtIndex(i);
}
}
return "none";
}
std::string Htu21dDrv::getValueAtIndex(int index) {
if (!this->active) {
return "none";
}
if (index == 0) {
return this->readValue0();
}
else if (index == 1) {
return this->readValue1();
}
else {
return "none";
}
}
bool Htu21dDrv::initialize() {
this->reset();
/* Make sure we're actually connected */
uint8_t x = readRegister(HTDU21D_READREG);
if (!(x & 0x2)) {
return false;
}
return true;
}
std::string Htu21dDrv::readValue0() {
if (!this->active) {
return "none";
}
unsigned char *hum = read3Bytes(HTDU21D_READHUM);
unsigned int rawHumidity = ((unsigned int) hum[0] << 8) | (unsigned int) hum[1];
// crc is hum[2]
float retHum = rawHumidity;
retHum *= 125;
retHum /= 65536;
retHum -= 6;
// convert the float to a string with 1 decimal place
return DataManip::dataToString(retHum, 1);
}
std::string Htu21dDrv::readValue1() {
if (!this->active) {
return "none";
}
unsigned char *tmp = read3Bytes(HTDU21D_READTEMP);
unsigned int temp = ((unsigned int) tmp[0] << 8) | (unsigned int) tmp[1];
// crc is tmp[2]
float retTemp = temp;
retTemp *= 175.72;
retTemp /= 65536;
retTemp -= 46.85;
// convert the float to a string with 1 decimal place
return DataManip::dataToString(retTemp, 1);
}
void Htu21dDrv::reset(void) {
write(HTDU21D_RESET);
usleep(15000);
}
unsigned char* Htu21dDrv::read3Bytes(uint32_t fromAddress){
this->write(fromAddress);
unsigned char* data = new unsigned char[3];
// Wait 50ms for the measurement to be taken
usleep(50000);
if(::read(this->file, data, 3)!=(int)3){
DPRINT("Htu21dDrv: Failed to read in the full buffer.\n");
return NULL;
}
return data;
}