-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathms5837.py
More file actions
253 lines (199 loc) · 8.3 KB
/
ms5837.py
File metadata and controls
253 lines (199 loc) · 8.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
# The MIT License (MIT)
# Copyright (c) 2017 Blue Robotics
# 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.
try:
import smbus2 as smbus
except:
print('Try sudo apt-get install python-smbus2')
from time import sleep
# Models
MODEL_02BA = 0
MODEL_30BA = 1
# Oversampling options
OSR_256 = 0
OSR_512 = 1
OSR_1024 = 2
OSR_2048 = 3
OSR_4096 = 4
OSR_8192 = 5
# kg/m^3 convenience
DENSITY_FRESHWATER = 997
DENSITY_SALTWATER = 1029
# Conversion factors (from native unit, mbar)
UNITS_Pa = 100.0
UNITS_hPa = 1.0
UNITS_kPa = 0.1
UNITS_mbar = 1.0
UNITS_bar = 0.001
UNITS_atm = 0.000986923
UNITS_Torr = 0.750062
UNITS_psi = 0.014503773773022
# Valid units
UNITS_Centigrade = 1
UNITS_Farenheit = 2
UNITS_Kelvin = 3
class MS5837(object):
# Registers
_MS5837_ADDR = 0x76
_MS5837_RESET = 0x1E
_MS5837_ADC_READ = 0x00
_MS5837_PROM_READ = 0xA0
_MS5837_CONVERT_D1_256 = 0x40
_MS5837_CONVERT_D2_256 = 0x50
def __init__(self, model=MODEL_30BA, bus=1):
self._model = model
try:
self._bus = smbus.SMBus(bus)
except:
print("Bus %d is not available."%bus)
print("Available busses are listed as /dev/i2c*")
self._bus = None
self._fluidDensity = DENSITY_FRESHWATER
self._pressure = 0
self._temperature = 0
self._D1 = 0
self._D2 = 0
def init(self):
if self._bus is None:
"No bus!"
return False
self._bus.write_byte(self._MS5837_ADDR, self._MS5837_RESET)
# Wait for reset to complete
sleep(0.01)
self._C = []
# Read calibration values and CRC
for i in range(7):
c = self._bus.read_word_data(self._MS5837_ADDR, self._MS5837_PROM_READ + 2*i)
c = ((c & 0xFF) << 8) | (c >> 8) # SMBus is little-endian for word transfers, we need to swap MSB and LSB
self._C.append(c)
crc = (self._C[0] & 0xF000) >> 12
if crc != self._crc4(self._C):
print("PROM read error, CRC failed!")
return False
return True
def read(self, oversampling=OSR_8192):
if self._bus is None:
print("No bus!")
return False
if oversampling < OSR_256 or oversampling > OSR_8192:
print("Invalid oversampling option!")
return False
# Request D1 conversion (pressure)
self._bus.write_byte(self._MS5837_ADDR, self._MS5837_CONVERT_D1_256 + 2*oversampling)
# Maximum conversion time increases linearly with oversampling
# max time (seconds) ~= 2.2e-6(x) where x = OSR = (2^8, 2^9, ..., 2^13)
# We use 2.5e-6 for some overhead
sleep(2.5e-6 * 2**(8+oversampling))
d = self._bus.read_i2c_block_data(self._MS5837_ADDR, self._MS5837_ADC_READ, 3)
self._D1 = d[0] << 16 | d[1] << 8 | d[2]
# Request D2 conversion (temperature)
self._bus.write_byte(self._MS5837_ADDR, self._MS5837_CONVERT_D2_256 + 2*oversampling)
# As above
sleep(2.5e-6 * 2**(8+oversampling))
d = self._bus.read_i2c_block_data(self._MS5837_ADDR, self._MS5837_ADC_READ, 3)
self._D2 = d[0] << 16 | d[1] << 8 | d[2]
# Calculate compensated pressure and temperature
# using raw ADC values and internal calibration
self._calculate()
return True
def setFluidDensity(self, denisty):
self._fluidDensity = denisty
# Pressure in requested units
# mbar * conversion
def pressure(self, conversion=UNITS_mbar):
return self._pressure * conversion
# Temperature in requested units
# default degrees C
def temperature(self, conversion=UNITS_Centigrade):
degC = self._temperature / 100.0
if conversion == UNITS_Farenheit:
return (9.0/5.0)*degC + 32
elif conversion == UNITS_Kelvin:
return degC + 273
return degC
# Depth relative to MSL pressure in given fluid density
def depth(self):
return (self.pressure(UNITS_Pa)-101300)/(self._fluidDensity*9.80665)
# Altitude relative to MSL pressure
def altitude(self):
return (1-pow((self.pressure()/1013.25),.190284))*145366.45*.3048
# Cribbed from datasheet
def _calculate(self):
OFFi = 0
SENSi = 0
Ti = 0
dT = self._D2-self._C[5]*256
if self._model == MODEL_02BA:
SENS = self._C[1]*65536+(self._C[3]*dT)/128
OFF = self._C[2]*131072+(self._C[4]*dT)/64
self._pressure = (self._D1*SENS/(2097152)-OFF)/(32768)
else:
SENS = self._C[1]*32768+(self._C[3]*dT)/256
OFF = self._C[2]*65536+(self._C[4]*dT)/128
self._pressure = (self._D1*SENS/(2097152)-OFF)/(8192)
self._temperature = 2000+dT*self._C[6]/8388608
# Second order compensation
if self._model == MODEL_02BA:
if (self._temperature/100) < 20: # Low temp
Ti = (11*dT*dT)/(34359738368)
OFFi = (31*(self._temperature-2000)*(self._temperature-2000))/8
SENSi = (63*(self._temperature-2000)*(self._temperature-2000))/32
else:
if (self._temperature/100) < 20: # Low temp
Ti = (3*dT*dT)/(8589934592)
OFFi = (3*(self._temperature-2000)*(self._temperature-2000))/2
SENSi = (5*(self._temperature-2000)*(self._temperature-2000))/8
if (self._temperature/100) < -15: # Very low temp
OFFi = OFFi+7*(self._temperature+1500)*(self._temperature+1500)
SENSi = SENSi+4*(self._temperature+1500)*(self._temperature+1500)
elif (self._temperature/100) >= 20: # High temp
Ti = 2*(dT*dT)/(137438953472)
OFFi = (1*(self._temperature-2000)*(self._temperature-2000))/16
SENSi = 0
OFF2 = OFF-OFFi
SENS2 = SENS-SENSi
if self._model == MODEL_02BA:
self._temperature = (self._temperature-Ti)
self._pressure = (((self._D1*SENS2)/2097152-OFF2)/32768)/100.0
else:
self._temperature = (self._temperature-Ti)
self._pressure = (((self._D1*SENS2)/2097152-OFF2)/8192)/10.0
# Cribbed from datasheet
def _crc4(self, n_prom):
n_rem = 0
n_prom[0] = ((n_prom[0]) & 0x0FFF)
n_prom.append(0)
for i in range(16):
if i%2 == 1:
n_rem ^= ((n_prom[i>>1]) & 0x00FF)
else:
n_rem ^= (n_prom[i>>1] >> 8)
for n_bit in range(8,0,-1):
if n_rem & 0x8000:
n_rem = (n_rem << 1) ^ 0x3000
else:
n_rem = (n_rem << 1)
n_rem = ((n_rem >> 12) & 0x000F)
self.n_prom = n_prom
self.n_rem = n_rem
return n_rem ^ 0x00
class MS5837_30BA(MS5837):
def __init__(self, bus=1):
MS5837.__init__(self, MODEL_30BA, bus)
class MS5837_02BA(MS5837):
def __init__(self, bus=1):
MS5837.__init__(self, MODEL_02BA, bus)