-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphSensor.cpp
More file actions
573 lines (473 loc) · 14.3 KB
/
Copy pathphSensor.cpp
File metadata and controls
573 lines (473 loc) · 14.3 KB
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
/**
* @file phSensor.cpp
*
* Implements the ph sensor class.
*/
#include "phSensor.h"
#include "i2c_iO.h"
#include "globalMtx.h"
#include <iostream>
#include <unistd.h>
#include <string>
#include <stdexcept>
#include <wiringPiI2C.h>
#define DEFAULT_ADDR 0x63
using namespace std;
vector<phSensor*> phSensors;
////////////////////////////////////////////////////////////////////////////////////////////////////
/// <summary>Constructor.</summary>
///
/// <exception cref="runtime_error">If no device is found or the set phID is != (1 or 2)</exception>
///
/// <param name="phID">ID of the PH Slot (1 or 2 for the moment)</param>
////////////////////////////////////////////////////////////////////////////////////////////////////
phSensor::phSensor(int position)
{
busMtx.lock();
slotPosition = position;
deviceID = switchToSlot(slotPosition, DEFAULT_ADDR);
busMtx.unlock();
if (deviceID < 0)
{
throw runtime_error(string("error while opening ph on default address 0x63"));
}
busAddress = DEFAULT_ADDR;
phValue = 0;
disconnected = false;
running = true;
}
/// <summary>Destructor.</summary>
phSensor::~phSensor()
{
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// <summary>Gets the current bus address.</summary>
///
/// <returns>The current bus address.</returns>
////////////////////////////////////////////////////////////////////////////////////////////////////
int phSensor::getBusAddress()
{
return busAddress;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// <summary>Sets a new bus address in the firmware of the device.</summary>
///
/// <param name="newAddr">The new bus address.</param>
///
/// <returns>true if it succeeds, false if it fails.</returns>
////////////////////////////////////////////////////////////////////////////////////////////////////
bool phSensor::setNewBusAddress(int newAddr)
{
bool res = false;
if (newAddr > 0 && newAddr < 128)
{
char buffer[10];
sprintf(buffer, "I2c,%d", newAddr);
busMtx.lock();
deviceID = switchToSlot(slotPosition, DEFAULT_ADDR);
res = writeI2CAtlasScientific(string(buffer), deviceID);
if (res)
{
sleep(3);
deviceID = wiringPiI2CSetup(newAddr);
if (deviceID != -1)
{
busAddress = newAddr;
res = true;
}
else
{
res = false;
}
}
}
busMtx.unlock();
return res;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// <summary>Gets current temperature compensation value.</summary>
///
/// <returns>The temperature compensation value.</returns>
////////////////////////////////////////////////////////////////////////////////////////////////////
float phSensor::getTempCompensation()
{
float tempCompensation = -1;
bool res;
busMtx.lock();
deviceID = switchToSlot(slotPosition, DEFAULT_ADDR);
res = writeI2CAtlasScientific("T,?", deviceID);
if (res)
{
string result;
usleep(300000); //wait 300 microseconds for response
res = readI2CAtlasScientific(result, deviceID);
busMtx.unlock();
if (res)
{
if (sscanf(result.substr(3).c_str(), "%f", &tempCompensation) != 1)
{
cout << "Bad reading: " << result << endl;
tempCompensation = -1;
}
}
}
return tempCompensation;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// <summary>Sets temperature compensation value. In order to achieve the most accurate possible
/// readings, the temperature of the liquid being measured must be transmitted to the ph-
/// module. Another device must be used to read the temperature.</summary>
///
/// <param name="newTemp">The new temperature compensation value.</param>
///
/// <returns>true if it succeeds, false if it fails.</returns>
////////////////////////////////////////////////////////////////////////////////////////////////////
bool phSensor::setTempCompensation(float newTemp)
{
bool res = false;
char buffer[10];
sprintf(buffer, "T,%f", newTemp);
busMtx.lock();
deviceID = switchToSlot(slotPosition, DEFAULT_ADDR);
res = writeI2CAtlasScientific(string(buffer), deviceID);
if (res)
{
usleep(300000); //wait 300 microseconds for response
string reading;
res = readI2CAtlasScientific(reading, deviceID);
}
busMtx.unlock();
return res;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// <summary>Gets calibration status.</summary>
///
/// <returns>"-1" == error
/// "0" == no calibration profile present "1" == one point calibrated "2" == two point
/// calibrated "3" == three point calibrated.</returns>
////////////////////////////////////////////////////////////////////////////////////////////////////
int phSensor::getCalibrationStatus()
{
int result = -1;
bool res;
busMtx.lock();
deviceID = switchToSlot(slotPosition, DEFAULT_ADDR);
res = writeI2CAtlasScientific("Cal,?", deviceID);
if (res)
{
usleep(300000);
string reading;
res = readI2CAtlasScientific(reading, deviceID);
if (res)
{
if (isdigit(reading[5]))
{
result = reading[5] - '0';
}
}
}
busMtx.unlock();
return result;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// <summary>Clears the calibration profile.</summary>
///
/// <returns>true if it succeeds, false if it fails.</returns>
////////////////////////////////////////////////////////////////////////////////////////////////////
bool phSensor::clearCalibration()
{
bool res = false;
busMtx.lock();
deviceID = switchToSlot(slotPosition, DEFAULT_ADDR);
res = writeI2CAtlasScientific("Cal,clear", deviceID);
if (res)
{
usleep(300000); //wait 300ms for response
string reading;
res = readI2CAtlasScientific(reading, deviceID);
}
busMtx.unlock();
return res;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// <summary>Calibrations of the ph-module.</summary>
///
/// <param name="cmd"> The command which gets send to the device.</param>
/// <param name="phVal">The ph value of the calibration solution.</param>
///
/// <returns>true if it succeeds, false if it fails.</returns>
////////////////////////////////////////////////////////////////////////////////////////////////////
bool phSensor::calibration(std::string cmd, float phVal)
{
bool res = false;
char buffer[12];
sprintf(buffer, "%s,%f", cmd.c_str(), phVal);
busMtx.lock();
deviceID = switchToSlot(slotPosition, DEFAULT_ADDR);
res = writeI2CAtlasScientific(string(buffer), deviceID);
if (res)
{
disconnected = false;
usleep(1600000);//wait 1.6 sec for response
string reading;
res = readI2CAtlasScientific(reading, deviceID);
}
else
{
disconnected = true;
}
busMtx.unlock();
return res;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// <summary>Lowpoint calibration i.e. 4.0.</summary>
///
/// <param name="phVal">The ph value of the calibration solution.</param>
///
/// <returns>true if it succeeds, false if it fails.</returns>
////////////////////////////////////////////////////////////////////////////////////////////////////
bool phSensor::lowpointCalibration(float phVal)
{
return calibration("Cal,low", phVal);
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// <summary>Midpoint calibration (7.0 recommended).</summary>
///
/// <param name="phVal">The ph value of the calibration solution.</param>
///
/// <returns>true if it succeeds, false if it fails.</returns>
////////////////////////////////////////////////////////////////////////////////////////////////////
bool phSensor::midpointCalibration(float phVal)
{
return calibration("Cal,mid", phVal);
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// <summary>Highpoint calibration i.e. 10.0.</summary>
///
/// <param name="phVal">The ph value of the calibration solution.</param>
///
/// <returns>true if it succeeds, false if it fails.</returns>
////////////////////////////////////////////////////////////////////////////////////////////////////
bool phSensor::highpointCalibration(float phVal)
{
return calibration("Cal,high", phVal);
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// <summary>
/// Gets a new ph reading from the probe. Use this function just in one thread if possible.
/// A Mutex would take at least 1 second, so poor performance.
/// </summary>
///
/// <returns> ">= 0" -> ph-value, "-1" -> reading failed. </returns>
////////////////////////////////////////////////////////////////////////////////////////////////////
float phSensor::getNewPHReading()
{
busMtx.lock();
bool res;
deviceID = switchToSlot(slotPosition, DEFAULT_ADDR);
res = writeI2CAtlasScientific("R", deviceID);
if (res)
{
disconnected = false;
sleep(1); //wait 1 sec for response
string result;
res = readI2CAtlasScientific(result, deviceID);
if (res)
{
if (sscanf(result.c_str(), "%f", &phValue) != 1)
{
phValue = -1;
}
}
else
{
disconnected = true;
}
}
else
{
disconnected = true;
phValue = -1;
}
busMtx.unlock();
return phValue;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// <summary>Starts the sleepmode of the ph-module.
///
/// To conserve energy in between readings, the ph-module can be put into a low power sleep
/// state. This will turn off the LEDs and shut down almost all of the internal workings. The
/// power consumption will be reduced to 1.16 mA at 5V and 0.995 mA at 3.3V. To wake the ph-
/// module, send it any command. After the device is woken up, 4 consecutive readings should
/// be taken before the readings are considered valid.</summary>
///
/// <returns>true if it succeeds, false if it fails.</returns>
////////////////////////////////////////////////////////////////////////////////////////////////////
bool phSensor::startSleepmode()
{
bool res;
busMtx.lock();
deviceID = switchToSlot(slotPosition, DEFAULT_ADDR);
res = writeI2CAtlasScientific("SLEEP", deviceID);
if (res)
{
disconnected = false;
usleep(300000); //wait 300ms till next instruction can be recieved
}
else
{
disconnected = true;
}
busMtx.unlock();
return res;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// <summary>Gets the device information.</summary>
///
/// <returns>
/// - Device info on success
/// - Empty String (use empty() function)
/// </returns>
////////////////////////////////////////////////////////////////////////////////////////////////////
string phSensor::getDeviceInfo()
{
char buffer[30];
string result = "";
bool res;
busMtx.lock();
deviceID = switchToSlot(slotPosition, DEFAULT_ADDR);
res = writeI2CAtlasScientific("I", deviceID);
if (res)
{
usleep(300000); //wait 300ms for instruction
res = readI2CAtlasScientific(result, deviceID);
if (res)
{
disconnected = false;
sprintf(buffer, "%s%s%s%s", "Device: ", result.substr(3, 2).c_str(), " Firmware: ", result.substr(6, 3).c_str());
result = string(buffer);
}
else
{
disconnected = true;
result = "";
}
}
else
{
disconnected = true;
}
busMtx.unlock();
return result;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// <summary>Gets the slope. After calibrating a pH probe issuing the slope command will show how
/// closely (in percentage) the calibrated pH probe is working compared to an ideal pH
/// probe.</summary>
///
/// <param name="acidCalibration">[in,out] Float in which the result of the acid calibration slope
/// will be stored.</param>
/// <param name="baseCalibration">[in,out] Float in which the result of the base calibration slope
/// will be stored.</param>
///
/// <returns>true if it succeeds, false if it fails.</returns>
////////////////////////////////////////////////////////////////////////////////////////////////////
bool phSensor::getSlope(float &acidCalibration, float &baseCalibration)
{
bool res;
busMtx.lock();
deviceID = switchToSlot(slotPosition, DEFAULT_ADDR);
res = writeI2CAtlasScientific("SLOPE,?", deviceID);
if (res)
{
usleep(300000); //wait 300ms for instruction
string result;
res = readI2CAtlasScientific(result, deviceID);
if (res)
{
string acid = result.substr(7, 4).c_str();
string base = result.substr(12, 4).c_str();
if (sscanf(acid.c_str(), "%f", &acidCalibration) && sscanf(base.c_str(), "%f", &baseCalibration) != 1)
{
disconnected = false;
res = false;
}
else
{
disconnected = true;
}
}
}
else
{
disconnected = false;
}
busMtx.unlock();
return res;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// <summary>
/// Gets the last PH reading gotten by getNewPHReading().
/// </summary>
///
/// <returns>The current ph-value</returns>
////////////////////////////////////////////////////////////////////////////////////////////////////
float phSensor::getPHReading()
{
float ph;
busMtx.lock();
ph = phValue;
busMtx.unlock();
return phValue;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
/// <summary>Determines if the device is a ph-module.</summary>
///
/// <returns>true if it is a ph, false if it is not.</returns>
////////////////////////////////////////////////////////////////////////////////////////////////////
bool phSensor::checkDeviceModell()
{
bool res = false;
char buffer[30];
busMtx.lock();
deviceID = switchToSlot(slotPosition, DEFAULT_ADDR);
res = writeI2CAtlasScientific("I", deviceID);
if (res)
{
usleep(300000); //wait 300ms for instruction
string result;
res = readI2CAtlasScientific(result, deviceID);
if (res)
{
sprintf(buffer, "%s", result.substr(3, 2).c_str());
result = string(buffer);
if (result != "pH")
{
disconnected = false;
res = false;
}
else
{
disconnected = true;
}
}
}
busMtx.unlock();
return res;
}
bool phSensor::isDisconnected()
{
return disconnected;
}
bool phSensor::isOperating()
{
return running;
}
void phSensor::setOperatingStatus(bool running)
{
this->running = running;
}
int phSensor::getSlotPosition()
{
return slotPosition;
}