-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathADS1115.cpp
More file actions
560 lines (486 loc) · 16.6 KB
/
Copy pathADS1115.cpp
File metadata and controls
560 lines (486 loc) · 16.6 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
/**************************************************************************/
/*
Distributed with a free-will license.
Use it any way you want, profit or free, provided it fits in the licenses of its associated works.
ADS1115
This code is designed to work with the ADS1115_I2CADC I2C Mini Module available from ControlEverything.com.
https://www.controleverything.com/content/Analog-Digital-Converters?sku=ADS1115_I2CADC#tabs-0-product_tabset-2
*/
/**************************************************************************/
#if ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
#include <Wire.h>
#include "ADS1115.h"
/**************************************************************************/
/*
Abstract away platform differences in Arduino wire library
*/
/**************************************************************************/
static uint8_t i2cread(void)
{
#if ARDUINO >= 100
return Wire.read();
#else
return Wire.receive();
#endif
}
/**************************************************************************/
/*
Abstract away platform differences in Arduino wire library
*/
/**************************************************************************/
static void i2cwrite(uint8_t x)
{
#if ARDUINO >= 100
Wire.write((uint8_t)x);
#else
Wire.send(x);
#endif
}
/**************************************************************************/
/*
Writes 16-bits to the specified destination register
*/
/**************************************************************************/
static void writeRegister(uint8_t i2cAddress, uint8_t reg, uint16_t value)
{
Wire.beginTransmission(i2cAddress);
i2cwrite((uint8_t)reg);
i2cwrite((uint8_t)(value>>8));
i2cwrite((uint8_t)(value & 0xFF));
Wire.endTransmission();
}
/**************************************************************************/
/*
Reads 16-bits from the specified destination register
*/
/**************************************************************************/
static uint16_t readRegister(uint8_t i2cAddress, uint8_t reg)
{
Wire.beginTransmission(i2cAddress);
i2cwrite((uint8_t)reg);
Wire.endTransmission();
Wire.requestFrom(i2cAddress, (uint8_t)2);
return (int16_t)((i2cread() << 8) | i2cread());
}
/**************************************************************************/
/*
Instantiates a new ADS1115 class with appropriate properties
*/
/**************************************************************************/
void ADS1115::getAddr_ADS1115(uint8_t i2cAddress)
{
ads_i2cAddress = i2cAddress;
ads_conversionDelay = ADS1115_CONVERSIONDELAY;
}
/**************************************************************************/
/*
Sets up the Hardware
*/
/**************************************************************************/
void ADS1115::begin()
{
Wire.begin();
}
/**************************************************************************/
/*
Sets the Operational status/single-shot conversion start
This determines the operational status of the device
*/
/**************************************************************************/
void ADS1115::setOSMode(adsOSMode_t osmode)
{
ads_osmode = osmode;
}
/**************************************************************************/
/*
Gets the Operational status/single-shot conversion start
*/
/**************************************************************************/
adsOSMode_t ADS1115::getOSMode()
{
return ads_osmode;
}
/**************************************************************************/
/*
Sets the gain and input voltage range
This configures the programmable gain amplifier
*/
/**************************************************************************/
void ADS1115::setGain(adsGain_t gain)
{
ads_gain = gain;
}
/**************************************************************************/
/*
Gets a gain and input voltage range
*/
/**************************************************************************/
adsGain_t ADS1115::getGain()
{
return ads_gain;
}
/**************************************************************************/
/*
Sets the Device operating mode
This controls the current operational mode of the ADS1115
*/
/**************************************************************************/
void ADS1115::setMode(adsMode_t mode)
{
ads_mode = mode;
}
/**************************************************************************/
/*
Gets the Device operating mode
*/
/**************************************************************************/
adsMode_t ADS1115::getMode()
{
return ads_mode;
}
/**************************************************************************/
/*
Sets the Date Rate
This controls the data rate setting
*/
/**************************************************************************/
void ADS1115::setRate(adsRate_t rate)
{
ads_rate = rate;
}
/**************************************************************************/
/*
Gets the Date Rate
*/
/**************************************************************************/
adsRate_t ADS1115::getRate()
{
return ads_rate;
}
/**************************************************************************/
/*
Sets the Comparator mode
This controls the comparator mode of operation
*/
/**************************************************************************/
void ADS1115::setCompMode(adsCompMode_t compmode)
{
ads_compmode = compmode;
}
/**************************************************************************/
/*
Gets the Comparator mode
*/
/**************************************************************************/
adsCompMode_t ADS1115::getCompMode()
{
return ads_compmode;
}
/**************************************************************************/
/*
Sets the Comparator polarity
This controls the polarity of the ALERT/RDY pin
*/
/**************************************************************************/
void ADS1115::setCompPol(adsCompPol_t comppol)
{
ads_comppol = comppol;
}
/**************************************************************************/
/*
Gets the Comparator polarity
*/
/**************************************************************************/
adsCompPol_t ADS1115::getCompPol()
{
return ads_comppol;
}
/**************************************************************************/
/*
Sets the Latching comparator
This controls whether the ALERT/RDY pin latches once asserted
or clears once conversions are within the
margin of the upper and lower threshold values
*/
/**************************************************************************/
void ADS1115::setCompLat(adsCompLat_t complat)
{
ads_complat = complat;
}
/**************************************************************************/
/*
Gets the Latching comparator
*/
/**************************************************************************/
adsCompLat_t ADS1115::getCompLat()
{
return ads_complat;
}
/**************************************************************************/
/*
Sets the Comparator queue and disable
This perform two functions.
It can disable the comparator function and put the
ALERT/RDY pin into a high state.
It also can control the number of successive
conversions exceeding the upper or lower thresholds
required before asserting the ALERT/RDY pin
*/
/**************************************************************************/
void ADS1115::setCompQue(adsCompQue_t compque)
{
ads_compque = compque;
}
/**************************************************************************/
/*
Gets the Comparator queue and disable
*/
/**************************************************************************/
adsCompQue_t ADS1115::getCompQue()
{
return ads_compque;
}
/**************************************************************************/
/*
Sets the low threshold value
*/
/**************************************************************************/
void ADS1115::setLowThreshold(int16_t threshold)
{
ads_lowthreshold = threshold;
writeRegister(ads_i2cAddress, ADS1115_REG_POINTER_LOWTHRESH, ads_lowthreshold);
}
/**************************************************************************/
/*
Gets the low threshold value
*/
/**************************************************************************/
int16_t ADS1115::getLowThreshold()
{
return ads_lowthreshold;
}
/**************************************************************************/
/*
Sets the high threshold value
*/
/**************************************************************************/
void ADS1115::setHighThreshold(int16_t threshold)
{
ads_highthreshold = threshold;
writeRegister(ads_i2cAddress, ADS1115_REG_POINTER_HITHRESH, ads_highthreshold);
}
/**************************************************************************/
/*
Gets the high threshold value
*/
/**************************************************************************/
int16_t ADS1115::getHighThreshold()
{
return ads_highthreshold;
}
/**************************************************************************/
/*
Reads the conversion results, measuring the voltage
for a single-ended ADC reading from the specified channel
Negative voltages cannot be applied to this circuit because the
ADS1115 can only accept positive voltages
*/
/**************************************************************************/
uint16_t ADS1115::Measure_SingleEnded(uint8_t channel)
{
if (channel > 3)
{
return 0;
}
// Start with default values
uint16_t config = ADS1115_REG_CONFIG_CQUE_NONE | // Disable the comparator (default val)
ADS1115_REG_CONFIG_CLAT_NONLAT | // Non-latching (default val)
ADS1115_REG_CONFIG_CPOL_ACTVLOW | // Alert/Rdy active low (default val)
ADS1115_REG_CONFIG_CMODE_TRAD; // Traditional comparator (default val)
// Set Operational status/single-shot conversion start
config |= ads_osmode;
// Set PGA/voltage range
config |= ads_gain;
// Set Device operating mode
config |= ads_mode;
// Set Data rate
config |= ads_rate;
// Set single-ended input channel
switch (channel)
{
case (0):
config |= ADS1115_REG_CONFIG_MUX_SINGLE_0;
break;
case (1):
config |= ADS1115_REG_CONFIG_MUX_SINGLE_1;
break;
case (2):
config |= ADS1115_REG_CONFIG_MUX_SINGLE_2;
break;
case (3):
config |= ADS1115_REG_CONFIG_MUX_SINGLE_3;
break;
}
// Write config register to the ADC
writeRegister(ads_i2cAddress, ADS1115_REG_POINTER_CONFIG, config);
// Wait for the conversion to complete
delay(ads_conversionDelay);
// Read the conversion results
// 16-bit unsigned results for the ADS1115
return readRegister(ads_i2cAddress, ADS1115_REG_POINTER_CONVERT);
}
/**************************************************************************/
/*
Reads the conversion results, measuring the voltage
difference between the P (AIN#) and N (AIN#) input
Generates a signed value since the difference can be either
positive or negative
*/
/**************************************************************************/
int16_t ADS1115::Measure_Differential(uint8_t channel)
{
// Start with default values
uint16_t config = ADS1115_REG_CONFIG_CQUE_NONE | // Disable the comparator (default val)
ADS1115_REG_CONFIG_CLAT_NONLAT | // Non-latching (default val)
ADS1115_REG_CONFIG_CPOL_ACTVLOW | // Alert/Rdy active low (default val)
ADS1115_REG_CONFIG_CMODE_TRAD; // Traditional comparator (default val)
// Set Operational status/single-shot conversion start
config |= ads_osmode;
// Set PGA/voltage range
config |= ads_gain;
// Set Device operating mode
config |= ads_mode;
// Set Data rate
config |= ads_rate;
// Set Differential input channel
switch (channel)
{
case (01):
config |= ADS1115_REG_CONFIG_MUX_DIFF_0_1; // AIN0 = P, AIN1 = N
break;
case (03):
config |= ADS1115_REG_CONFIG_MUX_DIFF_0_3; // AIN0 = P, AIN3 = N
break;
case (13):
config |= ADS1115_REG_CONFIG_MUX_DIFF_1_3; // AIN1 = P, AIN3 = N
break;
case (23):
config |= ADS1115_REG_CONFIG_MUX_DIFF_2_3; // AIN2 = P, AIN3 = N
break;
}
// Write config register to the ADC
writeRegister(ads_i2cAddress, ADS1115_REG_POINTER_CONFIG, config);
// Wait for the conversion to complete
delay(ads_conversionDelay);
// Read the conversion results
uint16_t raw_adc = readRegister(ads_i2cAddress, ADS1115_REG_POINTER_CONVERT);
return (int16_t)raw_adc;
}
/**************************************************************************/
/*
Sets up the comparator causing the ALERT/RDY pin to assert
(go from high to low) when the ADC value exceeds the
specified upper or lower threshold
ADC is single-ended input channel
*/
/**************************************************************************/
int16_t ADS1115::Comparator_SingleEnded(uint8_t channel)
{
// Start with default values
uint16_t config;
// Set Operational status/single-shot conversion start
config |= ads_osmode;
// Set PGA/voltage range
config |= ads_gain;
// Set Device operating mode
config |= ads_mode;
// Set Data rate
config |= ads_rate;
// Set Comparator mode
config |= ads_compmode;
// Set Comparator polarity
config |= ads_comppol;
// Set Latching comparator
config |= ads_complat;
// Set Comparator queue and disable
config |= ads_compque;
// Set single-ended input channel
switch (channel)
{
case (0):
config |= ADS1115_REG_CONFIG_MUX_SINGLE_0;
break;
case (1):
config |= ADS1115_REG_CONFIG_MUX_SINGLE_1;
break;
case (2):
config |= ADS1115_REG_CONFIG_MUX_SINGLE_2;
break;
case (3):
config |= ADS1115_REG_CONFIG_MUX_SINGLE_3;
break;
}
// Write config register to the ADC
writeRegister(ads_i2cAddress, ADS1115_REG_POINTER_CONFIG, config);
// Wait for the conversion to complete
delay(ads_conversionDelay);
// Read the conversion results
uint16_t raw_adc = readRegister(ads_i2cAddress, ADS1115_REG_POINTER_CONVERT);
return (int16_t)raw_adc;
}
/**************************************************************************/
/*
Sets up the comparator causing the ALERT/RDY pin to assert
(go from high to low) when the ADC value exceeds the
specified upper or lower threshold
ADC is Differential input channel
*/
/**************************************************************************/
int16_t ADS1115::Comparator_Differential(uint8_t channel)
{
// Start with default values
uint16_t config;
// Set Operational status/single-shot conversion start
config |= ads_osmode;
// Set PGA/voltage range
config |= ads_gain;
// Set Device operating mode
config |= ads_mode;
// Set Data rate
config |= ads_rate;
// Set Comparator mode
config |= ads_compmode;
// Set Comparator polarity
config |= ads_comppol;
// Set Latching comparator
config |= ads_complat;
// Set Comparator queue and disable
config |= ads_compque;
// Set Differential input channel
switch (channel)
{
case (01):
config |= ADS1115_REG_CONFIG_MUX_DIFF_0_1; // AIN0 = P, AIN1 = N
break;
case (03):
config |= ADS1115_REG_CONFIG_MUX_DIFF_0_3; // AIN0 = P, AIN3 = N
break;
case (13):
config |= ADS1115_REG_CONFIG_MUX_DIFF_1_3; // AIN1 = P, AIN3 = N
break;
case (23):
config |= ADS1115_REG_CONFIG_MUX_DIFF_2_3; // AIN2 = P, AIN3 = N
break;
}
// Write config register to the ADC
writeRegister(ads_i2cAddress, ADS1115_REG_POINTER_CONFIG, config);
// Wait for the conversion to complete
delay(ads_conversionDelay);
// Read the conversion results
uint16_t raw_adc = readRegister(ads_i2cAddress, ADS1115_REG_POINTER_CONVERT);
return (int16_t)raw_adc;
}