-
Notifications
You must be signed in to change notification settings - Fork 5
/
ps4.py
263 lines (201 loc) · 7.33 KB
/
ps4.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
# Control a robot with a PS4 controller.
# The left stick controls the speed and direction of both motors - push up to go forwards and down for backwards.
# The right stick is for steering - push the stick left or right to steer.
# Author: Neil Lambeth. neil@redrobotics.co.uk @NeilRedRobotics
from __future__ import print_function # Make print work with python 2 & 3
from evdev import InputDevice, ecodes
import redboard
dev = InputDevice('/dev/input/event2')
#print(dev)
device = str(dev).find('Wireless Controller')
if device != -1:
print ('Controller: PS4 Gamepad')
# Map buttons
triangle, x, square, circle = 307, 304, 308, 305
R1, R2, R3 = 311, 313, 318
L1, L2, L3 = 310, 312, 317
select, start, home = 314, 315, 316
# Set up variables
RX = 0
LX = 0
RY = 0
LY = 0
LeftY = 0
RightX = 0
RightX_R = 0
RightX_L = 0
Leftmotor = 0
Rightmotor = 0
LM_OLD = 0
RM_OLD = 0
turbo = False
invertX = False
# Read gamepad buttons
for event in dev.read_loop():
#print(event) # Uncomment to show all button data
if event.type == ecodes.EV_KEY:
#print(event.code) # Uncomment to show each keycode
if event.value == 1: # Button pressed
if event.code == triangle:
print ('triangle')
elif event.code == x:
print ('X')
elif event.code == square:
print ('Square')
elif event.code == circle:
print ('Circle')
elif event.code == R1:
print ('R1 - Turbo On')
turbo = True
elif event.code == R2:
print ('R2')
elif event.code == R3:
print ('R3')
elif event.code == L1:
print ('L1')
elif event.code == L2:
print ('L2')
elif event.code == L3:
print ('L3')
elif event.code == select and invertX == False: # Share
print ('Invert X')
invertX = True
elif event.code == select and invertX == True:
print ('Normal X')
invertX = False
elif event.code == start:
print ('Option')
elif event.code == home:
print ('Home')
if event.value == 0: # Button released
if event.code == R1: # Turbo Off
print ('R1 - Turbo Off')
turbo = False
if event.type == ecodes.EV_ABS:
# Dpad
if event.code == 16:
if event.value == -1:
print ('Dpad LEFT')
if event.value == 1:
print ('Dpad RIGHT')
if event.code == 17:
if event.value == -1:
print ('Dpad UP')
if event.value == 1:
print ('Dpad DOWN')
#R2 & L2 Analogue buttons
if event.code == 2: #L2
L2A = event.value
print(L2A)
if event.code == 5: #R2
R2A = event.value
print(R2A)
# Analogue sticks
if event.code == 1: # Left analogue Vertical stick
# The analogue stick gives a value between 0-255
# Convert the value to 0-127 for forwards
# and 0- -127 for backwards
LY = event.value
if LY < 128: # Forwards
LeftY = 127 - LY
#print('LY =',LY)
if LeftY < 5: # Deadband
LeftY = 0
#print('LeftY = ',LeftY)
elif LY >= 128: # Backwards
LeftY = LY - 128
LeftY = -LeftY # Make negative
#print('LY =',LY)
if LeftY > -5: # Deadband
LeftY = 0
#print('LeftY = ',LeftY)
elif event.code == 0: # Left analogue Horizontal stick
LX = event.value
if LX < 128: # Left
L_Left = 127 - LX
if L_Left > 5:
#print ('L_Left = ',L_Left)
pass
elif LX >= 127: # Right
L_Right = LX - 128
if L_Right > 5:
#print ('L_Right = ',L_Right)
pass
elif event.code == 4:#5 # Right analogue Vertical stick
RY = event.value
if RY <= 128: # Forwards
R_Fwd = 127 - RY
if R_Fwd > 5:
#R_Fwd = 0
#print ('R_Fwd = ',R_Fwd)
pass
elif RY >= 127: # Backwards
R_Fwd = RY - 128
R_Fwd = -R_Fwd # Make negative
if R_Fwd < -5:
#R_Fwd = 0
#print ('R_Rev = ',R_Fwd)
pass
elif event.code == 3:#2 # Right analogue Horizontal stick
# The analogue stick gives a value between 0-255
# Convert the value to 0-127 for left
# and 0-127 for right
RX = event.value
if RX < 128: # Left
RightX_L = 127 - RX
#print('RX =',RX)
#print('RightX_Left = ',RightX_L)
if RX > 128: # Right
RightX_R = RX - 128
#print('RX = ',RX)
#print('RightX_Right = ',RightX_R)
if RX < 135 and RX >120: # Make sure both values are zero if stick is in the centre
RightX_L = 0
RightX_R = 0
# Prepare the values to send to the motors
if LeftY == 0: #Turn on the spot if not going forwards or backwards
if RX <= 128: # Turn Left
Leftmotor = -RightX_L # Reverse motor to turn on the spot
Rightmotor = RightX_L
elif RX >= 127: # Turn Right
Leftmotor = RightX_R
Rightmotor = -RightX_R # Reverse motor to turn on the spot
elif LY <= 123: #128 # Forwards
#print ('Forwards')
Leftmotor = LeftY - RightX_L # Mix steering values
if Leftmotor <1: # Stop motor going backwards
Leftmotor = 0;
Rightmotor = LeftY - RightX_R # Mix steering values
if Rightmotor <1: # Stop motor going backwards
Rightmotor = 0;
elif LY >= 133: #127 # Backwards
#print('Backwards')
Leftmotor = LeftY + RightX_L # Mix steering values
if Leftmotor >-1: # Stop motor going forwards
Leftmotor = 0;
Rightmotor = LeftY + RightX_R # Mix steering values
if Rightmotor >-1: # Stop motor going forwards
Rightmotor = 0;
if turbo == True: # Double speed for turbo
LM = Leftmotor * 2
RM = Rightmotor * 2
else: # Normal speed
LM = Leftmotor
RM = Rightmotor
if LM != LM_OLD or RM != RM_OLD: # Only print motor speeds if they have changed
print ('')
print ('Left motor =',LM)
print ('Right motor =',RM)
print ('-----------------------------------')
pass
LM_OLD = LM
RM_OLD = RM
# Set motor speed and direction
if invertX == True: # Reverse steering controls
#print('Inverted steering')
redboard.M2_8bit(RM)
redboard.M1_8bit(LM)
else: # Normal steering controls
#print ('Normal steering')
redboard.M2_8bit(LM)
redboard.M1_8bit(RM)