-
Notifications
You must be signed in to change notification settings - Fork 1
/
gdev_labjack_ei1050.py
294 lines (256 loc) · 9.95 KB
/
gdev_labjack_ei1050.py
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
#! /usr/bin/env python3
# -*- coding: UTF-8 -*-
"""
gdev_labjack_ei1050.py - Support of EI1050 Sensor for the LabJack Device
Original Name: EI1050
Desc: A few simple classes to handle communication with the EI1050 probe
"""
import sys
import threading
import time
import u3
import u6 # u6 is ignored here
__version__ = "ei1050_local" # ei1050 has no version number; this is inserted by ullix
class EI1050:
"""
EI1050 class to simplify communication with an EI1050 probe
"""
U3 = 3
U6 = 6
UE9 = 9
U3_STRING = "U3"
U6_STRING = "U6"
UE9_STRING = "UE9"
U3_DEFAULT_DATA_PIN_NUM = 4
U3_DEFAULT_CLOCK_PIN_NUM = 5
U3_DEFAULT_ENABLE_PIN_NUM = 7
U6_DEFAULT_DATA_PIN_NUM = 0
U6_DEFAULT_CLOCK_PIN_NUM = 1
U6_DEFAULT_ENABLE_PIN_NUM = 3
UE9_DEFAULT_DATA_PIN_NUM = 0
UE9_DEFAULT_CLOCK_PIN_NUM = 1
UE9_DEFAULT_ENABLE_PIN_NUM = 3
FIO_PIN_STATE = 0
def __init__(self, device, autoUpdate=True, enablePinNum=-1, dataPinNum=-1, clockPinNum=-1, shtOptions=0xc0):
self.device = device
self.autoUpdate = autoUpdate
self.dataPinNum = dataPinNum
self.clockPinNum = clockPinNum
self.shtOptions = shtOptions
self.enablePinNum = enablePinNum
self.curState = {'StatusReg': None, 'StatusCRC': None,
'Temperature': None, 'TemperatureCRC': None,
'Humidity': None, 'HumidityCRC': None}
# Determine device type
if self.device.__class__.__name__ == EI1050.U3_STRING:
self.deviceType = EI1050.U3
elif self.device.__class__.__name__ == EI1050.U6_STRING:
self.deviceType = EI1050.U6
elif self.device.__class__.__name__ == EI1050.UE9_STRING:
self.deviceType = EI1050.UE9
else:
raise TypeError('Invalid device passed. Can not get default values.')
# If not specified otherwise, use class default for the data pin number
if self.enablePinNum == -1:
if self.deviceType == EI1050.U3:
self.enablePinNum = EI1050.U3_DEFAULT_ENABLE_PIN_NUM
elif self.deviceType == EI1050.U6:
self.enablePinNum = EI1050.U6_DEFAULT_ENABLE_PIN_NUM
elif self.deviceType == EI1050.UE9:
self.enablePinNum = EI1050.UE9_DEFAULT_ENABLE_PIN_NUM
else:
raise TypeError('Invalid device passed. Can not get default values.')
# If not specified otherwise, use class default for the data pin number
if self.dataPinNum == -1:
if self.deviceType == EI1050.U3:
self.dataPinNum = EI1050.U3_DEFAULT_DATA_PIN_NUM
elif self.deviceType == EI1050.U6:
self.dataPinNum = EI1050.U6_DEFAULT_DATA_PIN_NUM
elif self.deviceType == EI1050.UE9:
self.dataPinNum = EI1050.UE9_DEFAULT_DATA_PIN_NUM
else:
raise TypeError('Invalid device passed. Can not get default values.')
# If not specified otherwise, use class default for the clock pin number
if self.clockPinNum == -1:
if self.deviceType == EI1050.U3:
self.clockPinNum = EI1050.U3_DEFAULT_CLOCK_PIN_NUM
elif self.deviceType == EI1050.U6:
self.clockPinNum = EI1050.U6_DEFAULT_CLOCK_PIN_NUM
elif self.deviceType == EI1050.UE9:
self.clockPinNum = EI1050.UE9_DEFAULT_CLOCK_PIN_NUM
else:
raise TypeError('Invalid device passed. Can not get default values.')
# Set U3 pins
if self.deviceType == EI1050.U3:
self.device.configIO(FIOAnalog=EI1050.FIO_PIN_STATE)
# Set to write out
if self.deviceType == EI1050.U3:
self.device.getFeedback(u3.BitDirWrite(self.enablePinNum, 1))
elif self.deviceType == EI1050.U6:
self.device.getFeedback(u6.BitDirWrite(self.enablePinNum, 1))
def enableAutoUpdate(self):
"""
Name: EI1050.enableAutoUpdate()
Desc: Turns on automatic updating of readings
"""
self.autoUpdate = True
def disableAutoUpdate(self):
"""
Name: EI1050.disableAutoUpdate()
Desc: Truns off automatic updating of readings
"""
self.autoUpdate = False
def getStatus(self):
"""
Name: EI1050.getStatus()
Desc: A read of the SHT1x status register
"""
if self.autoUpdate:
self.update()
return self.curState['StatusReg']
def getStatusCRC(self):
"""
Name: EI1050.getStatusCRC()
Desc: Get cyclic reduancy check for status
"""
if self.autoUpdate:
self.update()
return self.curState['StatusCRC']
def getTemperature(self):
"""
Name: EI1050.getTemperature()
Desc: Get a temperature reading from the EI1050 probe
"""
if self.autoUpdate:
self.update()
return self.curState['Temperature']
def getTemperatureCRC(self):
"""
Name: EI1050.getStatusCRC()
Desc: Get cyclic redundancy check for temperature reading
"""
if self.autoUpdate:
self.update()
return self.curState['TemperatureCRC']
def getHumidity(self):
"""
Name: EI1050.getHumidity()
Desc: Get a humidity reading from the EI1050 probe
"""
if self.autoUpdate:
self.update()
return self.curState['Humidity']
def getHumidityCRC(self):
"""
Name: EI1050.getHumidityCRC()
Desc: Get cyclic redundancy check for humidity reading
"""
if self.autoUpdate:
self.update()
return self.curState['HumidityCRC']
def getReading(self):
"""
Name: EI1050.getReading()
Desc: Get a reading and create a Reading object with the information
"""
if self.autoUpdate:
self.update()
if 'StatusCRC' in self.curState:
return Reading(self.curState['StatusReg'], self.curState['StatusCRC'], self.curState['Temperature'], self.curState['TemperatureCRC'], self.curState['Humidity'], self.curState['HumidityCRC'])
else:
return Reading(self.curState['StatusReg'], 0, self.curState['Temperature'], self.curState['TemperatureCRC'], self.curState['Humidity'], self.curState['HumidityCRC'])
def update(self):
"""
Name: EI1050.update()
Desc: Gets a fresh set of readings from this probe
"""
self.writeBitState(self.enablePinNum, 1) # Enable the probe
self.curState = self.device.sht1x(self.dataPinNum, self.clockPinNum, self.shtOptions)
self.writeBitState(self.enablePinNum, 0) # Disable the probe
def writeBitState(self, pinNum, state):
"""
Name: EI1050.writeBitState(pinNum, state)
Desc: Device independent way to write bit state
"""
if self.deviceType == EI1050.U3:
self.device.getFeedback(u3.BitStateWrite(pinNum, state))
elif self.deviceType == EI1050.U6:
self.device.getFeedback(u6.BitStateWrite(pinNum, state))
elif self.deviceType == EI1050.UE9:
self.device.singleIO(1, pinNum, Dir=1, State=state)
class Reading:
"""
A class that represents a reading taken from an EI1050 probe
"""
def __init__(self, status, statusCRC, temperature, temperatureCRC, humidity, humidityCRC):
self.__status = status
self.__statusCRC = statusCRC
self.__temperature = temperature
self.__temperatureCRC = temperatureCRC
self.__humidity = humidity
self.__humidityCRC = humidityCRC
def getStatus(self):
"""
Name: Reading.getStatus()
Desc: Returns that status of the EI1050 probe at the time of this reading
"""
return self.__status
def getStatusCRC(self):
"""
Name: Reading.getStatusCRC()
Desc: Get the cyclic reduancy check for status at the time of this reading
"""
return self.__statusCRC
def getTemperature(self):
"""
Name: Reading.getTemperature()
Desc: Get the temperature reported by the EI1050 probe at the time of this reading
"""
return self.__temperature
def getTemperatureCRC(self):
"""
Name: Reading.getStatusCRC()
Desc: Get cyclic redundancy check for the temperature reading
"""
return self.__temperatureCRC
def getHumidity(self):
"""
Name: Reading.getHumidity()
Desc: Get the humidity reported by the EI1050 probe at the time of this reading
"""
return self.__humidity
def getHumidityCRC(self):
"""
Name: Reading.getHumidityCRC()
Desc: Get cyclic redundancy check for humidity reading
"""
return self.__humidityCRC
class EI1050Reader(threading.Thread):
"""
A simple threading class to read EI1050 values
"""
def __init__(self, device, targetQueue, readingDelay=1, autoUpdate=True, enablePinNum=-1, dataPinNum=-1, clockPinNum=-1, shtOptions=0xc0):
try:
self.readingDelay = readingDelay # How long to wait between reads (in sec)
self.targetQueue = targetQueue # The queue in which readings will be placed
self.probe = EI1050(device, autoUpdate, enablePinNum, dataPinNum, clockPinNum, shtOptions)
self.running = False
self.exception = None
threading.Thread.__init__(self, group=None)
except:
self.exception = sys.exc_info()
def stop(self):
"""
Stops this thread's activity. Note: this may not be immediate
"""
self.running = False
def run(self):
self.running = True
while self.running:
try:
self.targetQueue.put(self.probe.getReading())
time.sleep(self.readingDelay)
except:
self.exception = sys.exc_info()
self.stop()
break