-
Notifications
You must be signed in to change notification settings - Fork 1
/
MyoBebop.lua
431 lines (315 loc) · 7.03 KB
/
MyoBebop.lua
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
-- cd developer/parrotdrone/samples/unix/BebopDroneDecodeStream
scriptId = 'bebop.parrot.0-14-0.myo'
minMyoConnectVersion = '0.14.0'
scriptTitle = 'Myo Bebop Connector'
description = [[ Let user control the Parrot Bebop Drone using Thalmic Labs' Myo armband ]]
controls = [[
- emergency landing = fingers spread
- take off/land = double tap
- pilot = fist
- hover = release fist
- up = fist & arm out, roll 90 degrees toward upper body (just like waving to say "hi")
- down = fist & arm out, roll 90 degrees toward lower body
- left = fist & move arm to the left
- right = fist & move arm to the right
- forward = fist & roll counter-clockwise
- backward = fist & roll clockwise
- yaw left = wave out
- yaw right = wave in
]]
----------------------------
-- Fields
arm = "unknown"
isFlying = false
isPiloting = false
canFlyUp = true
canFlyDown = true
canFlyLeft = true
canFlyRight = true
canFlyForward = true
canFlyBackward = true
canYawLeft = false
canYawRight = false
centerPitch = 0
centerYaw = 0
centerRoll = 0
PI = 3.1416
TWO_PI = PI * 2
PITCH_DEADZONE = 0.3
YAW_DEADZONE = 0.3
ROLL_DEADZONE = 0.4
printPilotingSteps = false
printPitchYawRoll = false
printCounter = 0
----------------------------
-- Check if Terminal is in use
function onForegroundWindowChange( title, app )
-- myo.debug("onForegroundWindowChange: " .. app .. " === " .. title)
local titleMatch = string.match( title, "com.apple.Terminal" ) ~= nil
-- com.apple.Terminal
-- com.thalmic.myoconnect
if ( titleMatch ) then
myo.vibrate( "short" )
arm = myo.getArm()
end
return titleMatch
end
function activeAppName()
return "Terminal"
end
----------------------------
-- Piloting functions
function emergencyLanding()
isFlying = false
myo.keyboard( "m", "press" )
if flightDebugging then
myo.debug( "emergencyLanding" )
end
end
function takeOffAndLand()
myo.vibrate( "medium" )
myo.keyboard( "space", "press" )
if not isFlying then
isFlying = true
if flightDebugging then
myo.debug( "take off" )
end
else
isFlying = false
if flightDebugging then
myo.debug( "land" )
end
end
end
function pilot()
if isFlying then
isPiloting = true
myo.vibrate( "short" )
if flightDebugging then
myo.debug( "pilot" )
end
-- Get current pitch, yaw, and roll. Preparing to pilot.
centerPitch = myo.getPitch()
centerYaw = myo.getYaw()
centerRoll = myo.getRoll()
end
end
function hover()
if isFlying then
isPiloting = false
canFlyUp = true
canFlyDown = true
canFlyLeft = true
canFlyRight = true
canFlyForward = true
canFlyBackward = true
myo.vibrate( "short" )
if flightDebugging then
myo.debug( "hover" )
end
end
end
function flyUp()
if isPiloting and canFlyUp then
canFlyDown = false
canFlyLeft = false
canFlyRight = false
canFlyForward = false
canFlyBackward = false
myo.keyboard( "z", "down" )
if flightDebugging then
myo.debug( "up" )
end
end
end
function flyDown()
if isPiloting and canFlyDown then
canFlyUp = false
canFlyLeft = false
canFlyRight = false
canFlyForward = false
canFlyBackward = false
myo.keyboard( "s", "down" )
if flightDebugging then
myo.debug( "down" )
end
end
end
function flyLeft()
if isPiloting and canFlyLeft then
canFlyUp = false
canFlyDown = false
canFlyRight = false
canFlyForward = false
canFlyBackward = false
myo.keyboard( "left_arrow", "down" )
if flightDebugging then
myo.debug( "left" )
end
end
end
function flyRight()
if isPiloting and canFlyRight then
canFlyUp = false
canFlyDown = false
canFlyLeft = false
canFlyForward = false
canFlyBackward = false
myo.keyboard( "right_arrow", "down" )
if flightDebugging then
myo.debug( "right" )
end
end
end
function flyForward()
if isPiloting and canFlyForward then
canFlyUp = false
canFlyDown = false
canFlyLeft = false
canFlyRight = false
canFlyBackward = false
myo.keyboard( "up_arrow", "down" )
if flightDebugging then
myo.debug( "forward" )
end
end
end
function flyBackward()
if isPiloting and canFlyBackward then
canFlyUp = false
canFlyDown = false
canFlyLeft = false
canFlyRight = false
canFlyForward = false
myo.keyboard( "down_arrow", "down" )
if flightDebugging then
myo.debug( "backward" )
end
end
end
----------------------------
-- Distinguish between waveIn and waveOut on left and right arm
-- to setup yawing functions
function setYawLeft()
if not canYawLeft then
canYawLeft = true
else
canYawLeft = false
end
end
function setYawRight()
if not canYawRight then
canYawRight = true
else
canYawRight = false
end
end
function setYawOut()
if arm == "left" then
setYawLeft()
elseif arm == "right" then
setYawRight()
end
end
function setYawIn()
if arm == "left" then
setYawRight()
elseif arm == "right" then
setYawLeft()
end
end
function yawLeft()
if isFlying and canYawLeft then
myo.keyboard( "q", "down" )
if flightDebugging then
myo.debug( "yawLeft" )
end
end
end
function yawRight()
if isFlying and canYawRight then
myo.keyboard( "d", "down" )
if flightDebugging then
myo.debug( "yawRight" )
end
end
end
----------------------------
-- Calculate current and new positions to pilot
function calculateDeltaRadians( current, center )
local delta = current - center
if delta > PI then
delta = delta - TWO_PI
elseif delta < -PI then
delta = delta + TWO_PI
end
return delta
end
function onPeriodic()
local currentPitch = myo.getPitch()
local currentYaw = myo.getYaw()
local currentRoll = myo.getRoll()
local deltaPitch = calculateDeltaRadians( currentPitch, centerPitch )
deltaYaw = calculateDeltaRadians( currentYaw, centerYaw )
deltaRoll = calculateDeltaRadians( currentRoll, centerRoll );
-- Debugging helper
printCounter = printCounter + 1
if printCounter >= 200 and printPitchYawRoll then
myo.debug( "deltaPitch = " .. deltaPitch )
myo.debug( "deltaYaw = " .. deltaYaw )
myo.debug( "deltaRoll = " .. deltaRoll )
printCounter = 0
end
if deltaPitch > PITCH_DEADZONE then
flyUp()
end
if deltaPitch < -PITCH_DEADZONE then
flyDown()
end
if deltaYaw > YAW_DEADZONE then
flyRight()
end
if deltaYaw < -YAW_DEADZONE then
flyLeft()
end
if deltaRoll > ROLL_DEADZONE then
if arm == "left" then
flyBackward()
elseif arm == "right" then
flyForward()
end
end
if deltaRoll < -ROLL_DEADZONE then
if arm == "left" then
flyForward()
elseif arm == "right" then
flyBackward()
end
end
if canYawLeft then
yawLeft()
end
if canYawRight then
yawRight()
end
end
----------------------------
-- Map poses to functions
local BINDINGS =
{
fingersSpread_on = emergencyLanding,
doubleTap_on = takeOffAndLand,
fist_on = pilot,
fist_off = hover,
waveOut_on = setYawOut,
waveOut_off = setYawOut,
waveIn_on = setYawIn,
waveIn_off = setYawIn,
}
myo.setLockingPolicy("none")
function onPoseEdge( pose, edge )
input = BINDINGS[pose.."_"..edge]
if input then
input()
end
end