-
Notifications
You must be signed in to change notification settings - Fork 2
/
Tah_Testing.py
500 lines (413 loc) · 13.4 KB
/
Tah_Testing.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
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
import RPi.GPIO as GPIO
import time
import RpiInit
class Tah:
def testAnalogLow(self):
RpiInit.init()
count = 0
GPIO.output(15,GPIO.HIGH)
GPIO.output(19,GPIO.HIGH) # set channel 7 _19
GPIO.output(8,GPIO.HIGH)
GPIO.output(10,GPIO.LOW)
print "A0 Testing"
#GPIO.cleanup(21)
value0 =GPIO.input(21) # Mux output pin
print value0
if(not value0):
count =count +1
time.sleep(0.5)
GPIO.output(15,GPIO.HIGH)
GPIO.output(19,GPIO.LOW) # set channel 5
GPIO.output(8,GPIO.HIGH)
GPIO.output(10,GPIO.LOW)
print "A1 Testing"
value1 = GPIO.input(21) # read input
print value1
if( not value1):
count = count +1
time.sleep(0.5)
GPIO.output(15,GPIO.LOW)
GPIO.output(19,GPIO.HIGH) # set channel 6
GPIO.output(8,GPIO.HIGH)
GPIO.output(10,GPIO.LOW)
print "A2 Testing"
value2 = GPIO.input(21) # read input
print value2
if(not value2):
count =count +1
time.sleep(0.5)
GPIO.output(15,GPIO.LOW)
GPIO.output(19,GPIO.LOW) # set channel 4
GPIO.output(8,GPIO.HIGH)
GPIO.output(10,GPIO.LOW)
print "A3 Testing"
value3 = GPIO.input(21) # read input
print value3
if(not value3):
count =count +1
time.sleep(0.5)
GPIO.output(15,GPIO.LOW)
GPIO.output(19,GPIO.HIGH) # set channel 2
GPIO.output(8,GPIO.LOW)
GPIO.output(10,GPIO.LOW)
print "A4 Testing"
value4 = GPIO.input(21) # read input
print value4
if(not value4):
count = count +1
time.sleep(0.5)
GPIO.output(15,GPIO.HIGH)
GPIO.output(19,GPIO.LOW) # set channel 1
GPIO.output(8,GPIO.LOW)
GPIO.output(10,GPIO.LOW)
print "A5 Testing"
value5 = GPIO.input(21) # read input
print value5
if(not value5):
count = count +1
time.sleep(0.5)
print count
print "****************************Analog Pin LOW State***************************"
return count
GPIO.cleanup()
def testAnalogHigh(self):
RpiInit.init()
count = 0
GPIO.output(15,GPIO.HIGH)
GPIO.output(19,GPIO.HIGH) # set channel 7 _19
GPIO.output(8,GPIO.HIGH)
GPIO.output(10,GPIO.LOW)
#lcd.message("A0 Testing")
#Tah_LCD.lcd_byte(LCD_LINE_1, LCD_CMD)
#Tah_LCD.lcd_string("Tah Testing")
print "A0 Testing"
#GPIO.cleanup(21)
value0 =GPIO.input(21) # Mux output pin
print value0
if(value0):
count =count +1
time.sleep(0.5)
GPIO.output(15,GPIO.HIGH)
GPIO.output(19,GPIO.LOW) # set channel 5
GPIO.output(8,GPIO.HIGH)
GPIO.output(10,GPIO.LOW)
print "A1 Testing"
value1 = GPIO.input(21) # read input
print value1
if(value1):
count = count +1
time.sleep(0.5)
GPIO.output(15,GPIO.LOW)
GPIO.output(19,GPIO.HIGH) # set channel 6
GPIO.output(8,GPIO.HIGH)
GPIO.output(10,GPIO.LOW)
print "A2 Testing"
value2 = GPIO.input(21) # read input
print value2
if(value2):
count =count +1
time.sleep(0.5)
GPIO.output(15,GPIO.LOW)
GPIO.output(19,GPIO.LOW) # set channel 4
GPIO.output(8,GPIO.HIGH)
GPIO.output(10,GPIO.LOW)
print "A3 Testing"
value3 = GPIO.input(21) # read input
if(value3):
count =count +1
time.sleep(0.5)
GPIO.output(15,GPIO.LOW)
GPIO.output(19,GPIO.HIGH) # set channel 2
GPIO.output(8,GPIO.LOW)
GPIO.output(10,GPIO.LOW)
print "A4 Testing"
value4 = GPIO.input(21) # read input
if(value4):
count = count +1
time.sleep(0.5)
GPIO.output(15,GPIO.HIGH)
GPIO.output(19,GPIO.LOW) # set channel 1
GPIO.output(8,GPIO.LOW)
GPIO.output(10,GPIO.LOW)
print "A5 Testing"
value5 = GPIO.input(21) # read input
if(value5):
count = count +1
time.sleep(0.5)
print count
print "****************************Analog pins High State****************************"
return count
GPIO.cleanup()
def testGPIOLow(self):
RpiInit.init()
count = 0
GPIO.output(15,GPIO.HIGH)
GPIO.output(19,GPIO.HIGH) # set channel 11
GPIO.output(8,GPIO.LOW)
GPIO.output(10,GPIO.HIGH)
#lcd.message("D2 Testing")
print "D2 Testing"
value0 =GPIO.input(21) # Mux output pin
print value0
if (not value0):
count =count +1
print "D2 Ok!"
time.sleep(0.5)
GPIO.output(15,GPIO.LOW)
GPIO.output(19,GPIO.HIGH) # set channel 10
GPIO.output(8,GPIO.LOW)
GPIO.output(10,GPIO.HIGH)
print "D3 Testing"
value1 = GPIO.input(21) # read input
print value1
if(not value1):
count =count +1
print "D3 Ok!"
time.sleep(0.5)
GPIO.output(15,GPIO.HIGH)
GPIO.output(19,GPIO.LOW) # set channel 9
GPIO.output(8,GPIO.LOW)
GPIO.output(10,GPIO.HIGH)
print "D4 Testing"
value2 = GPIO.input(21) # read input
print value2
if(not value2):
count =count +1
print "D4 Ok!"
time.sleep(0.5)
GPIO.output(15,GPIO.LOW)
GPIO.output(19,GPIO.LOW) # set channel 8
GPIO.output(8,GPIO.LOW)
GPIO.output(10,GPIO.HIGH)
print "D5 Testing"
value3 = GPIO.input(21) # read input
if (not value3):
count =count +1
print "D5 Ok!"
time.sleep(0.5)
GPIO.output(15,GPIO.HIGH)
GPIO.output(19,GPIO.HIGH) # set channel 7
GPIO.output(8,GPIO.HIGH)
GPIO.output(10,GPIO.LOW)
print "D6 Testing"
value4 = GPIO.input(21) # read input
if(not value4):
count =count +1
print "D6 Ok!"
time.sleep(0.5)
GPIO.output(15,GPIO.LOW)
GPIO.output(19,GPIO.HIGH) # set channel 6
GPIO.output(8,GPIO.HIGH)
GPIO.output(10,GPIO.LOW)
print "D7 Testing"
value5 = GPIO.input(21) # read input
if(not value5):
count =count +1
print "D7 Ok!"
time.sleep(0.5)
GPIO.output(15,GPIO.HIGH)
GPIO.output(19,GPIO.LOW) # set channel 5
GPIO.output(8,GPIO.HIGH)
GPIO.output(10,GPIO.LOW)
print "D8 Testing"
value6 = GPIO.input(21) # read input
if(not value6):
count =count +1
print "D8 Ok!"
time.sleep(0.5)
GPIO.output(15,GPIO.LOW)
GPIO.output(19,GPIO.LOW) # set channel 4
GPIO.output(8,GPIO.HIGH)
GPIO.output(10,GPIO.LOW)
print "D9 Testing"
value7 = GPIO.input(21) # read input
if(not value7):
count =count +1
print "D9 Ok!"
time.sleep(0.5)
GPIO.output(15,GPIO.HIGH)
GPIO.output(19,GPIO.HIGH) # set channel 3
GPIO.output(8,GPIO.LOW)
GPIO.output(10,GPIO.LOW)
print "D10 Testing"
value8 = GPIO.input(21) # read input
if(not value8):
count =count +1
print "D10 Ok!"
time.sleep(0.5)
GPIO.output(15,GPIO.LOW)
GPIO.output(19,GPIO.HIGH) # set channel 2
GPIO.output(8,GPIO.LOW)
GPIO.output(10,GPIO.LOW)
print "D11 Testing"
value9 = GPIO.input(21) # read input
if(not value9):
count =count +1
print "D11 ok!"
time.sleep(0.5)
GPIO.output(15,GPIO.HIGH)
GPIO.output(19,GPIO.LOW) # set channel 1
GPIO.output(8,GPIO.LOW)
GPIO.output(10,GPIO.LOW)
print "D12 Testing"
value10 = GPIO.input(21) # read input
if(not value10):
count =count +1
print "D12 Ok!"
time.sleep(0.5)
GPIO.output(15,GPIO.LOW)
GPIO.output(19,GPIO.LOW) # set channel 0
GPIO.output(8,GPIO.LOW)
GPIO.output(10,GPIO.LOW)
print "D13 Testing"
value11 = GPIO.input(21) # read input
if(not value11):
count =count +1
print "D13 Ok!"
time.sleep(0.5)
print "****************************GPIO Pins Low Tested****************************"
return count
GPIO.cleanup()
def testGPIOHigh(self):
RpiInit.init()
count = 0
GPIO.output(15,GPIO.HIGH)
GPIO.output(19,GPIO.HIGH) # set channel 11
GPIO.output(8,GPIO.LOW)
GPIO.output(10,GPIO.HIGH)
#lcd.message("D2 Testing")
print "D2 Testing"
value0 =GPIO.input(21) # Mux output pin
print value0
if (value0):
count =count +1
print "D2 Ok!"
time.sleep(0.5)
GPIO.output(15,GPIO.LOW)
GPIO.output(19,GPIO.HIGH) # set channel 10
GPIO.output(8,GPIO.LOW)
GPIO.output(10,GPIO.HIGH)
print "D3 Testing"
value1 = GPIO.input(21) # read input
print value1
if(value1):
count =count +1
print "D3 Ok!"
time.sleep(0.5)
GPIO.output(15,GPIO.HIGH)
GPIO.output(19,GPIO.LOW) # set channel 9
GPIO.output(8,GPIO.LOW)
GPIO.output(10,GPIO.HIGH)
print "D4 Testing"
value2 = GPIO.input(21) # read input
print value2
if(value2):
count =count +1
print "D4 Ok!"
time.sleep(0.5)
GPIO.output(15,GPIO.LOW)
GPIO.output(19,GPIO.LOW) # set channel 8
GPIO.output(8,GPIO.LOW)
GPIO.output(10,GPIO.HIGH)
print "D5 Testing"
value3 = GPIO.input(21) # read input
print value3
if (value3):
count =count +1
print "D5 Ok!"
time.sleep(0.5)
GPIO.output(15,GPIO.HIGH)
GPIO.output(19,GPIO.HIGH) # set channel 7
GPIO.output(8,GPIO.HIGH)
GPIO.output(10,GPIO.LOW)
print "D6 Testing"
value4 = GPIO.input(21) # read input
print value4
if(value4):
count =count +1
print "D6 Ok!"
time.sleep(1)
GPIO.output(15,GPIO.LOW)
GPIO.output(19,GPIO.HIGH) # set channel 6
GPIO.output(8,GPIO.HIGH)
GPIO.output(10,GPIO.LOW)
print "D7 Testing"
value5 = GPIO.input(21) # read input
print value5
if(value5):
count =count +1
print "D7 Ok!"
time.sleep(1)
GPIO.output(15,GPIO.HIGH)
GPIO.output(19,GPIO.LOW) # set channel 5
GPIO.output(8,GPIO.HIGH)
GPIO.output(10,GPIO.LOW)
print "D8 Testing"
value6 = GPIO.input(21) # read input
print value6
if(value6):
count =count +1
print "D8 Ok!"
time.sleep(0.5)
GPIO.output(15,GPIO.LOW)
GPIO.output(19,GPIO.LOW) # set channel 4
GPIO.output(8,GPIO.HIGH)
GPIO.output(10,GPIO.LOW)
print "D9 Testing"
value7 = GPIO.input(21) # read input
print value7
if(value7):
count =count +1
print "D9 Ok!"
time.sleep(0.5)
GPIO.output(15,GPIO.HIGH)
GPIO.output(19,GPIO.HIGH) # set channel 3
GPIO.output(8,GPIO.LOW)
GPIO.output(10,GPIO.LOW)
print "D10 Testing"
value8 = GPIO.input(21) # read input
print value8
if(value8):
count =count +1
print "D10 Ok!"
time.sleep(0.5)
GPIO.output(15,GPIO.LOW)
GPIO.output(19,GPIO.HIGH) # set channel 2
GPIO.output(8,GPIO.LOW)
GPIO.output(10,GPIO.LOW)
print "D11 Testing"
value9 = GPIO.input(21) # read input
print value9
if(value9):
count =count +1
print "D11 ok!"
time.sleep(0.5)
GPIO.output(15,GPIO.HIGH)
GPIO.output(19,GPIO.LOW) # set channel 1
GPIO.output(8,GPIO.LOW)
GPIO.output(10,GPIO.LOW)
print "D12 Testing"
value10 = GPIO.input(21) # read input
print value10
if(value10):
count =count +1
print "D12 Ok!"
time.sleep(0.5)
GPIO.output(15,GPIO.LOW)
GPIO.output(19,GPIO.LOW) # set channel 0
GPIO.output(8,GPIO.LOW)
GPIO.output(10,GPIO.LOW)
print "D13 Testing"
value11 = GPIO.input(21) # read input
print value11
if(value11):
count =count +1
print "D13 Ok!"
time.sleep(0.5)
print "****************************GPIO pins High Tested****************************"
return count
GPIO.cleanup()
if __name__ == '__main__':
A =Tah()
DH =A.testGPIOHigh()
print DH