This repository was archived by the owner on Apr 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpi.py
60 lines (50 loc) · 1.43 KB
/
pi.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
'''
pi.py
- Main program on raspberry pi
- Initiate three processes that run independently
'''
import serial, io, socket, struct, time, picamera, os
import cPickle as pickle
from multiprocessing import Process
execfile(os.path.join('pi', 'proc.py'))
execfile(os.path.join('pi', 'func.py'))
execfile('common.py')
if __name__ == "__main__":
computerIP = '169.255.255.255' #Needs to be changed to your IP
s1 = SOCKET(computerIP, 8000, 'wb')
s2 = SOCKET(computerIP, 9000, 'wb')
s3 = socket.socket()
s3.connect((computerIP, 9500))
ser0 = createSerial('/dev/ttyUSB0')
print('Connected to : ' + ser0.name)
ser1 = createSerial('/dev/ttyUSB1')
print('Connected to : ' + ser1.name)
# Find out which arduino is doing what
waiting = 1
while waiting:
if ser0.readline():
waiting = 0
print('Sensor arduino at: ' + ser0.name)
sensorSerial = ser0
actuatorSerial = ser1
elif ser1.readline():
waiting = 0
print('Sensor arduino at: ' + ser1.name)
sensorSerial = ser1
actuatorSerial = ser0
try:
# Read camera
p1 = Process(target=readCamera, args=(s1.file,))
# From arduino
p2 = Process(target=readSerial, args=(sensorSerial,s2.file,))
# To arduino
p3 = Process(target=sendSerial, args=(actuatorSerial,s3,))
p1.start()
p2.start()
p3.start()
finally:
s1.close()
s2.close()
ser0.close()
ser1.close()
print '\n\n * DID SHUTDOWN *\n'