forked from lincomatic/open_evse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Adafruit_TMP007.cpp
152 lines (119 loc) · 3.74 KB
/
Adafruit_TMP007.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
/***************************************************
This is a library for the TMP007 Temp Sensor
Designed specifically to work with the Adafruit TMP007 Breakout
----> https://www.adafruit.com/products/2023
These displays use I2C to communicate, 2 pins are required to
interface
Adafruit invests time and resources providing this open source code,
please support Adafruit and open-source hardware by purchasing
products from Adafruit!
Written by Limor Fried/Ladyada for Adafruit Industries.
BSD license, all text above must be included in any redistribution
****************************************************/
#include "Adafruit_TMP007.h"
#include <util/delay.h>
//#define TESTDIE 0x0C78
//#define TESTVOLT 0xFEED
Adafruit_TMP007::Adafruit_TMP007(uint8_t i2caddr) {
_addr = i2caddr;
}
boolean Adafruit_TMP007::begin(uint8_t samplerate) {
//don't need - open_evse.ino does it Wire.begin();
write16(TMP007_CONFIG, TMP007_CFG_MODEON | TMP007_CFG_ALERTEN |
TMP007_CFG_TRANSC | samplerate);
write16(TMP007_STATMASK, TMP007_STAT_ALERTEN |TMP007_STAT_CRTEN);
// enable conversion ready alert
uint16_t did;
did = read16(TMP007_DEVID);
#ifdef TMP007_DEBUG
Serial.print("did = 0x"); Serial.println(did, HEX);
#endif
if (did != 0x78) return false;
return true;
}
//////////////////////////////////////////////////////
/*
int16_t Adafruit_TMP007::readDieTempC(void) {
double Tdie = readRawDieTemperature();
Tdie *= 0.03125; // convert to celsius
#ifdef TMP007_DEBUG
Serial.print("Tdie = "); Serial.print(Tdie); Serial.println(" C");
#endif
return Tdie;
}
*/
// return Celcius * 10
int16_t Adafruit_TMP007::readObjTempC10(void) {
int16_t raw = read16(TMP007_TOBJ);
if (raw & 0x1) return NAN;
uint32_t temp = ((int32_t)raw) * 78125;
return (int16_t) (temp / 1000000);
}
/*
int16_t Adafruit_TMP007::readRawDieTemperature(void) {
int16_t raw = read16(TMP007_TDIE);
#if TMP007_DEBUG == 1
#ifdef TESTDIE
raw = TESTDIE;
#endif
Serial.print("Raw Tambient: 0x"); Serial.print (raw, HEX);
float v = raw/4;
v *= 0.03125;
Serial.print(" ("); Serial.print(v); Serial.println(" *C)");
#endif
raw >>= 2;
return raw;
}
int16_t Adafruit_TMP007::readRawVoltage(void) {
int16_t raw;
raw = read16(TMP007_VOBJ);
#if TMP007_DEBUG == 1
#ifdef TESTVOLT
raw = TESTVOLT;
#endif
Serial.print("Raw voltage: 0x"); Serial.print (raw, HEX);
float v = raw;
v *= 156.25;
v /= 1000;
Serial.print(" ("); Serial.print(v); Serial.println(" uV)");
#endif
return raw;
}
*/
/*********************************************************************/
uint16_t Adafruit_TMP007::read16(uint8_t a) {
uint16_t ret;
Wire.beginTransmission(_addr); // start transmission to device
#if (ARDUINO >= 100)
Wire.write(a); // sends register address to read from
#else
Wire.send(a); // sends register address to read from
#endif
Wire.endTransmission(); // end transmission
Wire.beginTransmission(_addr); // start transmission to device
Wire.requestFrom(_addr, (uint8_t)2);// send data n-bytes read
#if (ARDUINO >= 100)
ret = Wire.read(); // receive DATA
ret <<= 8;
ret |= Wire.read(); // receive DATA
#else
ret = Wire.receive(); // receive DATA
ret <<= 8;
ret |= Wire.receive(); // receive DATA
#endif
Wire.endTransmission(); // end transmission
return ret;
}
void Adafruit_TMP007::write16(uint8_t a, uint16_t d) {
Wire.beginTransmission(_addr); // start transmission to device
#if (ARDUINO >= 100)
Wire.write(a); // sends register address to read from
Wire.write(d>>8); // write data
Wire.write(d); // write data
#else
Wire.send(a); // sends register address to read from
Wire.send((uint8_t)(d>>8)); // write data
Wire.send((uint8_t)d); // write data
#endif
Wire.endTransmission(); // end transmission
}