-
Notifications
You must be signed in to change notification settings - Fork 2
/
sensor_list_test.py
295 lines (290 loc) · 8.38 KB
/
sensor_list_test.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
295
all_sensors = ['Time', 'FL_VSS', 'FR_VSS', 'BL_VSS', 'BR_VSS', 'FL_SUS_POT', 'FR_SUS_POT', 'BL_SUS_POT', 'BR_SUS_POT',
'STEER_ANG', 'OIL_TEMP', 'OIL_PRES', 'MAP', 'MAT', 'TPS', 'FL_BRK_TMP', 'FR_BRK_TMP', 'BL_BRK_TMP',
'BR_BRK_TMP', 'F_BRK_PRES', 'B_BRK_PRES', 'COOL_TEMP', 'ACCELX', 'ACCELY', 'ACCELZ', 'GYROX', 'GYROY',
'GYROZ', 'MAGNETX', 'MAGNETY', 'MAGNETZ', 'NEUT', 'AVG_VSS', 'LAMBDA1', 'LAMBDA2', 'VOLT', 'GEAR',
'RPM', 'IG_CUT']
# change the ordering of this to the desired order for the dropdown lists and the order for the 'all sensors' tab
all_xbee_sensors = ['FL_VSS', 'FR_VSS', 'BL_VSS', 'BR_VSS', 'FL_SUS_POT', 'FR_SUS_POT', 'BL_SUS_POT', 'BR_SUS_POT',
'FL_BRK_TMP', 'FR_BRK_TMP', 'BL_BRK_TMP', 'BR_BRK_TMP', 'F_BRK_PRES', 'B_BRK_PRES', 'COOL_TEMP',
'STEER_ANG', 'TPS', 'OIL_TEMP', 'OIL_PRES', 'MAP', 'MAT', 'NEUT', "LAMBDA1", "LAMBDA2", 'ACCELX',
'ACCELY', 'ACCELZ', 'GYROX', 'GYROY', 'GYROZ', 'MAGNETX', 'MAGNETY', 'MAGNETZ']
tabs = ['High Priority Sensors', 'Medium Priority Sensors', 'Low Priority Sensors', 'Safety Sensors']
tab_values = [("tab_" + str(i)) for i in range(len(tabs))]
group1 = ['AVG_VSS', 'FL_VSS', 'FR_VSS', 'BL_VSS', 'BR_VSS', 'ACCELX', 'ACCELY', 'ACCELZ']
group2 = ['FL_SUS_POT', 'FR_SUS_POT', 'BL_SUS_POT', 'BR_SUS_POT', 'STEER_ANG', 'GYROX', 'GYROY', 'GYROZ', 'MAGNETX',
'MAGNETY', 'MAGNETZ', 'LAMBDA1', 'LAMBDA2']
group3 = ['TPS', 'OIL_PRES', 'OIL_TEMP', 'MAP', 'MAT', 'NEUT', 'VOLT', 'RPM', 'GEAR', 'IG_CUT']
group4 = ['FL_BRK_TMP', 'FR_BRK_TMP', 'BL_BRK_TMP', 'BR_BRK_TMP', 'F_BRK_PRES', 'B_BRK_PRES', 'COOL_TEMP']
groups = [group1, group2, group3, group4]
# This dictionary contains all the relevant sensor info (label, part identifier, min/max, and units)
# The tabs on the GUI can be changed by changing the name of the dictionary that contains the individual sensors
# Add more sensors to the GUI by creating a new sensor in the relevant grouping with all of the sensors info, make
# sure to also add the part identifier of the new sensor to the 'all_sensors' list.
sensors_info = {
'AVG_VSS': {
'label': 'Averaged Wheel Speed',
'id': 'AVG_VSS',
'units': 'MPH',
'min_value': 0,
'max_value': 100,
},
'FL_VSS': { # This name needs to be the same as the sensor id
'label': "Front Left Wheel Speed",
'id': 'FL_VSS',
'units': 'MPH',
'min_value': 0,
'max_value': 100,
},
'FR_VSS': {
'label': 'Front Right Wheel Speed',
'id': 'FR_VSS',
'units': 'MPH',
'min_value': 0,
'max_value': 100,
},
'BL_VSS': {
'label': 'Back Left Wheel Speed',
'id': 'BL_VSS',
'units': 'MPH',
'min_value': 0,
'max_value': 100,
},
'BR_VSS': {
'label': 'Back Right Wheel Speed',
'id': 'BR_VSS',
'units': 'MPH',
'min_value': 0,
'max_value': 100,
},
'ACCELX': {
'label': 'Accelerometer X (Longitudinal)',
'id': 'ACCELX',
'units': 'Gs',
'min_value': -16,
'max_value': 16
},
'ACCELY': {
'label': 'Accelerometer Y (Latitudinal)',
'id': 'ACCELY',
'units': 'Gs',
'min_value': -16,
'max_value': 16
},
'ACCELZ': {
'label': 'Accelerometer Z (Normal)',
'id': 'ACCELZ',
'units': 'Gs',
'min_value': -16,
'max_value': 16
},
'FL_SUS_POT': {
'label': 'Front Left Suspension Potentiometer',
'id': 'FL_SUS_POT',
'units': 'in.',
'min_value': 0,
'max_value': 6.5,
},
'FR_SUS_POT': {
'label': 'Front Right Suspension Potentiometer',
'units': 'in.',
'id': 'FR_SUS_POT',
'min_value': 0,
'max_value': 6.5,
},
'BL_SUS_POT': {
'label': 'Back Left Suspension Potentiometer',
'id': 'BL_SUS_POT',
'units': 'in.',
'min_value': 0,
'max_value': 6.5,
},
'BR_SUS_POT': {
'label': 'Back Right Suspension Potentiometer',
'id': 'BR_SUS_POT',
'units': 'in.',
'min_value': 0,
'max_value': 6.5,
},
'STEER_ANG': {
'label': 'Steering Angle',
'id': 'STEER_ANG',
'units': 'degrees',
'min_value': -180,
'max_value': 180,
},
'GYROX': {
'label': 'Gyroscope X (Roll)',
'id': 'GYROX',
'units': 'degrees/s',
'min_value': -8 * 250,
'max_value': 8 * 250,
},
'GYROY': {
'label': 'Gyroscope Y (Pitch)',
'id': 'GYROY',
'units': 'degrees/s',
'min_value': -8 * 250,
'max_value': 8 * 250,
},
'GYROZ': {
'label': 'Gyroscope Z (Yaw)',
'id': 'GYROZ',
'units': 'degrees/s',
'min_value': -8 * 250,
'max_value': 8 * 250,
},
'MAGNETX': {
'label': 'Magnetometer X',
'id': 'MAGNETX',
'units': 'Teslas',
'min_value': -4800,
'max_value': 4800,
},
'MAGNETY': {
'label': 'Magnetometer Y',
'id': 'MAGNETX',
'units': 'Teslas',
'min_value': -4800,
'max_value': 4800,
},
'MAGNETZ': {
'label': 'Magnetometer Z',
'id': 'MAGNETX',
'units': 'Teslas',
'min_value': -4800,
'max_value': 4800,
},
'TPS': {
'label': 'Throttle Position',
'id': 'TPS',
'units': '%',
'min_value': 0,
'max_value': 90,
},
'OIL_PRES': {
'label': 'Oil Pressure',
'id': 'OIL_PRES',
'units': 'PSI',
'min_value': 0,
'max_value': 100,
},
'OIL_TEMP': {
'label': 'Oil Temperature',
'id': 'OIL_TEMP',
'units': 'Fahrenheit',
'min_value': -80,
'max_value': 150,
},
'MAP': {
'label': 'Intake Manifold Air Pressure',
'id': 'MAP',
'units': 'Pa',
'min_value': 0,
'max_value': 100,
},
'MAT': {
'label': 'Intake Manifold Air Temperature',
'id': 'MAT',
'units': 'Celsius',
'min_value': 0,
'max_value': 100,
},
'FL_BRK_TMP': {
'label': 'Front Left Brake Temperature',
'id': 'FL_BRK_TMP',
'units': 'Celsius',
'min_value': 0,
'max_value': 800,
},
'FR_BRK_TMP': {
'label': 'Front Right Brake Temperature',
'id': 'FR_BRK_TMP',
'units': 'Celsius',
'min_value': 0,
'max_value': 800,
},
'BL_BRK_TMP': {
'label': 'Back Left Brake Temperature',
'id': 'BL_BRK_TMP',
'units': 'Celsius',
'min_value': 0,
'max_value': 800,
},
'BR_BRK_TMP': {
'label': 'Back Right Brake Temperature',
'id': 'BR_BRK_TMP',
'units': 'Celsius',
'min_value': 0,
'max_value': 800,
},
'F_BRK_PRES': {
'label': 'Front Brake Pressure',
'id': 'F_BRK_PRES',
'units': 'PSI',
'min_value': 0,
'max_value': 1000,
},
'B_BRK_PRES': {
'label': 'Back Brake Pressure',
'id': 'B_BRK_PRES',
'units': 'PSI',
'min_value': 0,
'max_value': 1000,
},
'COOL_TEMP': {
'label': 'Coolant Temperature',
'id': 'COOL_TEMP',
'units': 'Celsius',
'min_value': 0,
'max_value': 150,
},
'NEUT': {
'label': 'Neutral',
'id': 'NEUT',
'units': '',
'min_value': 0,
'max_value': 1,
},
'LAMBDA1': {
'label': 'Lambda 1 (exhaust ratio / oxygen sensor)',
'id': 'LAMBDA1',
'units': '',
'min_value': 0,
'max_value': 5
},
'LAMBDA2': {
'label': 'Lambda 2',
'id': 'LAMBDA2',
'units': '',
'min_value': 0,
'max_value': 5
},
'VOLT': {
'label': 'Battery Voltage',
'id': 'VOLT',
'units': '',
'min_value': 0,
'max_value': 12
},
'RPM': {
'label': 'Revolutions Per Minute',
'id': 'RPM',
'units': 'RPMs',
'min_value': 0,
'max_value': 8000
},
'GEAR': {
'label': 'Gear',
'id': 'GEAR',
'units': '',
'min_value': 0,
'max_value': 6
},
'IG_CUT': {
'label': 'Ignition Cut',
'id': 'IG_CUT',
'units': '',
'min_value': 0,
'max_value': 1
}
}