-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUDOO_RC_Joypad.py
162 lines (131 loc) · 3.33 KB
/
UDOO_RC_Joypad.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
#!/usr/bin/python
# UDOO Server Socket: working with Driodpad - Andriod
#Created 11 June 2014
#by Kevin Pan
import serial
import socket
import sys
from time import sleep
HOST=''
PORT=0
Gyro='';
X=0.000000;#Gyroscope X-axis
Y=0.000000;#Gyroscope Y-axis
Z=0.000000;#Gyroscope Z-axis
S1=0;#Slider 1;
S2=0;#Slider 2;
S3=0;#Slider 3;
S4=0;#Slider 4;
T1=0;#Trigger servo;
T2=0;#Trigger power;
B1=0;#Button - 'GO'
Speed=0;
Direction=0;
breakout=0;
BufferSize=128
SliderMax=16384
OutputString=''
InputString=''
#Programstart
print "\n Programm Started"
#Checking system input values
if len(sys.argv)<2:
print "\n####################################"
print "ERROR: Need more input information!!! \n"+"Format: python XYZ.py [HOST] [Port] "
print "####################################"
sys.exit("\n Programm Ended.\n")
HOST=sys.argv[1]
PORT=int(sys.argv[2])
#Serial connection to Arduino
arduino = serial.Serial("/dev/ttymxc3",9600)
print ("\nSerial Connection with Arduino Created")
#Socket Connection
sock = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
sock.connect((HOST,PORT))
print '\nSocket Connected:'
print "Connected to Host Address:",HOST
print "Connected to Port Number:",PORT,"\n\n"
while True:
#Buffering Data income:
InputString=sock.recv(BufferSize)
#End program by sending '<stop>' string:
if InputString[1:5] == 'STOP':
print("Disconnected form Client")
arduino.write("0+0.");
arduino.write("0+0.");
arduino.write("0+0.");
arduino.write("0+0.");
sys.exit()
#Editing Values:
Values=InputString.split(";")
Gyro=Values[0].split(",")
try:
X=float(Gyro[0].lstrip("[{"))
Y=float(Gyro[1])
Z=float(Gyro[2].rstrip("}"))
S1=int(Values[1].lstrip("{S").rstrip("}"))
S2=int(Values[2].lstrip("{S").rstrip("}"))
S3=int(Values[3].lstrip("{S").rstrip("}"))
S4=int(Values[4].lstrip("{S").rstrip("}"))
T1=int(Values[5])
T2=int(Values[6])
B1=int(Values[7][0:1])
breakout=0;
except (ValueError,IndexError) as e:
arduino.write("0+0.");
X=0;Y=0;Z=0;S1=0;S2=0;S3=0;S4=0;T1=0;T2=0;B1=0;
breakout=breakout+1
if breakout>=5:
arduino.write("0+0.");
arduino.write("0+0.");
arduino.write("0+0.");
sys.exit("\nConnection breaks\n");
pass
#SPEED CALCULATION
if B1==1:
if T2==1:
if Z>0:
if X<10 and X>=5.5:Speed=-(int(X)-2)
elif X<5.5 and X>=4.5:Speed=0
elif X<4.5 and X>=0:Speed=7-int(X)
elif X<0 and X>=-4.5:Speed=7
else:Speed=0
elif Z<=0:
if X<=10 and X>=5:Speed=-7
else:Speed=0
elif T2==0:
if Z>0:
if X<10 and X>=5.5:Speed=-(int(X)-3)
elif X<5.5 and X>=4.5:Speed=0
elif X<4.5 and X>=0:Speed=6-int(X)
elif X<0 and X>=-4.5:Speed=6
else:Speed=0
elif Z<=0:
if X<=10 and X>=5:Speed=-6
else:Speed=0
#DIRECTION CALCULATION
if int(Y)>=5:
Direction=10
elif int(Y)<=-5:
Direction=-10
else:
Direction=int(Y)*2
OutputString=str(Speed)+"+"+str(Direction)+"."
arduino.write(OutputString)
#Printing Values on to the screen:
print "GYRO: X: ",X," Y: ",Y," Z: ",Z
print "SLIDER: S1: ",S1," S2: ",S2," S3: ",S3," S4: ",S4
print "T1: ",T1," T2: ",T2," B1: ",B1
print "Speed: ",Speed," Direction: ",Direction
print "Raw: ",InputString
#Reset Variables:
X=0;Y=0;Z=0;S1=0;S2=0;S3=0;S4=0;T1=0;T2=0;B1=0;
Speed=0;Direction=0;
InputString=''
OutputString=''
Values=''
Gyro=''
arduino.close()
sock.close()
del sock
print('Programm ended.\n\n')