-
Notifications
You must be signed in to change notification settings - Fork 117
/
i2cHelper.py
148 lines (136 loc) · 3.75 KB
/
i2cHelper.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
#!/usr/bin/python
import smbus
import time
import os
RPI_REVISION_0 = ["900092"]
RPI_REVISION_1 = ["0002", "0003", "0004", "0005", "0006", "0007", "0008", "0009", "000d", "000e", "000f", "0010", "0011", "0012", "0013"]
RPI_REVISION_2 = ["a01041", "a21041"]
RPI_REVISION_3 = ["a02082", "a22082"]
CPU_Number = ''
def getPiRevision():
global CPU_Number
try:
f = open('/proc/cpuinfo','r')
for line in f:
if line.startswith('Revision'):
CPU_Number = line[11:-1]
if CPU_Number in RPI_REVISION_0:
return 0
elif CPU_Number in RPI_REVISION_1:
return 1
elif CPU_Number in RPI_REVISION_2:
return 2
elif CPU_Number in RPI_REVISION_3:
return 3
else:
return CPU_Number
except:
f.close()
return 'open file error'
finally:
f.close()
def getPiI2CBusNumber():
# get I2C bus number from /proc/cpuinfo*
revision = getPiRevision()
if revision in [2, 3]:
return 1
elif revision in [0, 1]:
return 0
else:
raise ValueError("Error occur while getting Pi Revision. Revision:{0}".format(revision))
def remove_line(tfile,sstr):
i2c_list = []
try:
lines=open(tfile,'r').readlines()
flen=len(lines)-1
for i in range(flen):
if sstr in lines[i]:
i2c_list.append(i)
for i in range(len(i2c_list)-1, 0, -1):
lines.remove(lines[i2c_list[i]])
open(tfile,'w').writelines(lines)
except Exception,e:
print 'remove_line:', e
def add_line(tfile,sstr):
try:
lines=open(tfile,'r').readlines()
lines.append(sstr)
open(tfile,'w').writelines(lines)
except Exception,e:
print 'add line:', e
def setting_i2c():
remove_line('/boot/config.txt', 'dtparam=i2c_arm=')
add_line('/boot/config.txt', '\ndtparam=i2c_arm=on\n')
def main():
global CPU_Number
print ''
print ' ===================================='
print ' || ||'
print ' || Raspberry Pi I2C check ||'
print ' || and setup tools ||'
print ' || ||'
print ' || SunFounder ||'
print ' ===================================='
print ''
time.sleep(2)
print " Checking your Pi's information."
your_pi_revision = getPiRevision()
you_i2c_bus_number = getPiI2CBusNumber()
time.sleep(1)
print ' Your cpu revision:', CPU_Number
time.sleep(1)
print ' Your Raspberry Pi is Revision', your_pi_revision
time.sleep(1)
print ' Your I2C bus number is:', you_i2c_bus_number
time.sleep(1)
print ''
time.sleep(1)
print ' Checking your device...'
flag = False
device = 'i2c-' + str(you_i2c_bus_number)
for dev in os.listdir('/dev/'):
if dev == device:
flag = True
time.sleep(1)
if flag:
print ' I2C setting is fine.'
time.sleep(1)
print ' Runing i2cdetect..'
time.sleep(1)
print ''
command = 'i2cdetect -y ' + str(you_i2c_bus_number)
os.system(command)
else:
print ' I2C has not been setup.'
time.sleep(1)
print ''
time.sleep(1)
print ' Backup...',
os.system('cp /boot/config.txt /boot/config.bak')
print 'done'
time.sleep(1)
print ' Setting i2c...',
setting_i2c()
print 'done'
time.sleep(1)
print ' I2C has set. It would change after reboot.'
time.sleep(1)
check = raw_input(' Do you want to reboot now?(y/n) ')
flag = True
while flag:
if check in ['y', 'Y']:
print ' Your Raspberry Pi will be reboot in 5 second.'
for i in range(6):
time.sleep(1)
print ' ', 5-i
print ' Rebooting...'
flag = False
os.system('reboot')
elif check in ['n', 'N']:
time.sleep(1)
print ' Done.'
flag = False
else:
print ' It should be "Y" or "N", in capital or not. Try again.'
if __name__ == '__main__':
main()