-
Notifications
You must be signed in to change notification settings - Fork 0
/
ADC0832_tmp.py
executable file
·104 lines (86 loc) · 2.63 KB
/
ADC0832_tmp.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
#!/usr/bin/env python
#-----------------------------------------------------
#
# This is a program for all ADC Module. It
# convert analog singnal to digital signal.
#
# This program is most analog signal modules'
# dependency. Use it like this:
# `import ADC0832`
# `sig = ADC0832.getResult(chn)`
#
# *'chn' should be 0 or 1 represent for ch0 or ch1
# on ADC0832
#
# ACD1302 Pi
# CS ---------------- Pin 11
# CLK --------------- Pin 13
# DI ---------------- Pin 12
# VCC ----------------- 3.3V
# GND ------------------ GND
#
#-----------------------------------------------------
import RPi.GPIO as GPIO
import time
ADC_CS = 11
ADC_CLK = 12
ADC_DIO = 13
# using default pins for backwards compatibility
def setup(cs=ADC_CS,clk=ADC_CLK,dio=ADC_DIO):
global ADC_CS, ADC_CLK, ADC_DIO
ADC_CS=cs
ADC_CLK=clk
ADC_DIO=dio
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BOARD) # Number GPIOs by its physical location
GPIO.setup(ADC_CS, GPIO.OUT) # Set pins' mode is output
GPIO.setup(ADC_CLK, GPIO.OUT) # Set pins' mode is output
def destroy():
GPIO.cleanup()
# using channel = 0 as default for backwards compatibility
def getResult(channel=0): # Get ADC result, input channal
GPIO.setup(ADC_DIO, GPIO.OUT)
GPIO.output(ADC_CS, 0)
GPIO.output(ADC_CLK, 0)
GPIO.output(ADC_DIO, 1); time.sleep(0.000002)
GPIO.output(ADC_CLK, 1); time.sleep(0.000002)
GPIO.output(ADC_CLK, 0)
GPIO.output(ADC_DIO, 1); time.sleep(0.000002)
GPIO.output(ADC_CLK, 1); time.sleep(0.000002)
GPIO.output(ADC_CLK, 0)
GPIO.output(ADC_DIO, channel); time.sleep(0.000002)
GPIO.output(ADC_CLK, 1)
GPIO.output(ADC_DIO, 1); time.sleep(0.000002)
GPIO.output(ADC_CLK, 0)
GPIO.output(ADC_DIO, 1); time.sleep(0.000002)
dat1 = 0
for i in range(0, 8):
GPIO.output(ADC_CLK, 1); time.sleep(0.000002)
GPIO.output(ADC_CLK, 0); time.sleep(0.000002)
GPIO.setup(ADC_DIO, GPIO.IN)
dat1 = dat1 << 1 | GPIO.input(ADC_DIO)
dat2 = 0
for i in range(0, 8):
dat2 = dat2 | GPIO.input(ADC_DIO) << i
GPIO.output(ADC_CLK, 1); time.sleep(0.000002)
GPIO.output(ADC_CLK, 0); time.sleep(0.000002)
GPIO.output(ADC_CS, 1)
GPIO.setup(ADC_DIO, GPIO.OUT)
if dat1 == dat2:
return dat1
else:
return 0
def getResult1():
return getResult(1)
def loop():
while True:
res0 = getResult(0)
res1 = getResult(1)
print 'res0 = %d, res1 = %d' % (res0,res1)
time.sleep(0.4)
if __name__ == '__main__': # Program start from here
setup()
try:
loop()
except KeyboardInterrupt: # When 'Ctrl+C' is pressed, the child program destroy() will be executed.
destroy()