-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontroller.cpp
440 lines (383 loc) · 12 KB
/
controller.cpp
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
431
432
433
434
435
436
437
438
439
440
/*
The MIT License (MIT)
Copyright (c) 2016 British Broadcasting Corporation.
This software is provided by Lancaster University by arrangement with the BBC.
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*/
#include "MicroBit.h"
#include <stdlib.h>
#include <math.h>
MicroBit uBit;
MicroBitImage pattern(5,5);
const int TOUCHPAD_MOTION = 9011;
const int TOUCHPAD_CONTROL = 9012;
int pin0, pin8, pin12, pin16 = 0;
int fwd,bwd,lft,rgt=0;
int connected = 0;
int8_t bwd_fwd = 0;
int8_t lft_rgt = 0;
int8_t bwd_fwd_lvl = 0;
int8_t lft_rgt_lvl = 0;
// 0=stopped, 1=forwards, 2=backwards
int drive = 0;
void dpadForwards() {
pin0 = 0;
pin8 = 0;
pin12 = 1;
pin16 = 1;
drive = 1;
}
// dpad
void dpadBackwards() {
pin0 = 1;
pin8 = 1;
pin12 = 0;
pin16 = 0;
drive = 2;
}
void resetPinValues() {
pin0 = 0;
pin8 = 0;
pin12 = 0;
pin16 = 0;
}
void stop() {
fwd=0;
bwd=0;
resetPinValues();
drive = 0;
}
void dpadLeft() {
lft=1;
rgt=0;
resetPinValues();
if (drive == 1) {
pin12 = 1;
pin16 = 0;
} else {
pin0 = 0;
pin8 = 1;
}
}
void dpadRight () {
lft=0;
rgt=1;
resetPinValues();
if (drive == 1) {
pin12 = 0;
pin16 = 1;
} else {
pin0 = 1;
pin8 = 0;
}
}
void setIndicatorActivated() {
pattern.clear();
pattern.setPixelValue(2,2, 255);
uBit.display.image.paste(pattern);
}
void setDeactivated() {
pattern.clear();
uBit.display.image.paste(pattern);
uBit.io.P0.setAnalogValue(0);
uBit.io.P8.setAnalogValue(0);
uBit.io.P12.setAnalogValue(0);
uBit.io.P16.setAnalogValue(0);
}
void setDirectionIndicators() {
// uBit.serial.printf("fwd:%d bwd:%d lft:%d rgt:%d bwd_fwd_lvl:%d lft_rgt_lvl:%d\r\n",fwd,bwd,lft,rgt,bwd_fwd_lvl,lft_rgt_lvl);
pattern.clear();
pattern.setPixelValue(2,0, fwd*25*abs(bwd_fwd_lvl));
pattern.setPixelValue(2,1, fwd*25*abs(bwd_fwd_lvl));
pattern.setPixelValue(2,3, bwd*25*abs(bwd_fwd_lvl));
pattern.setPixelValue(2,4, bwd*25*abs(bwd_fwd_lvl));
pattern.setPixelValue(0,2, lft*25*abs(lft_rgt_lvl));
pattern.setPixelValue(1,2, lft*25*abs(lft_rgt_lvl));
pattern.setPixelValue(4,2, rgt*25*abs(lft_rgt_lvl));
pattern.setPixelValue(3,2, rgt*25*abs(lft_rgt_lvl));
uBit.display.image.paste(pattern);
}
void writePinsDigital() {
uBit.io.P0.setDigitalValue(pin0);
uBit.io.P8.setDigitalValue(pin8);
uBit.io.P12.setDigitalValue(pin12);
uBit.io.P16.setDigitalValue(pin16);
}
void writePinsAnalog() {
// bwd_fwd_lvl: -ve=back +ve=forwards range:0-10
// 0=no movement forwards or backwards
// 1 to 10=forward speed (1=slowest, 10=fastest), -1 to -10 backwards
// lft_rgt_lvl: -ve=left +ve=right range:0-10
// 0-2=no movement left or right (deliberately less sensitive than fwd/bwd control)
// +/- 3-8 gradually increasing turn
// +/- 9-10 sharp turn
int p12_val = fwd * bwd_fwd_lvl * 102;
int p16_val = fwd * bwd_fwd_lvl * 102;
int p0_val = bwd * bwd_fwd_lvl * -102;
int p8_val = bwd * bwd_fwd_lvl * -102;
// left : pins 0 (backward) and 16 (forward)
// right: pins 8 (backward) and 12 (forward)
if (fwd == 1) {
if (lft == 1) {
// -3 to -8
if (lft_rgt_lvl > -9 && lft_rgt_lvl < -2) {
// forward with slow left turn
// uBit.serial.printf("B1\r\n");
// left wheel slower than right, same direction of rotation
p16_val = (int) ((p12_val * (10 + lft_rgt_lvl)) / 10);
// forward with faster left turn
} else {
// -9 to -10
// forward with fast left turn
// left wheel slower than right, opposite direction of rotation. Note, for extreme turns, could run this wheel faster than the other.
// uBit.serial.printf("C1\r\n");
p0_val = (int) ((p12_val * (-8 - lft_rgt_lvl)) * 0.5);
p8_val = 0;
p16_val = 0;
}
} else if (rgt == 1) {
// forward with slow right turn
// 3 to 8
if (lft_rgt_lvl < 9) {
// uBit.serial.printf("D1\r\n");
// right wheel slower than left, same direction of rotation
p12_val = (int) ((p16_val * (10 - lft_rgt_lvl)) / 10);
p0_val = 0;
p8_val = 0;
// forward with faster right turn
} else {
// 9 to 10
// uBit.serial.printf("E1\r\n");
p8_val = (int) ((p16_val * (lft_rgt_lvl - 8)) * 0.5);
p0_val = 0;
p12_val = 0;
}
} else if (lft ==0 && rgt == 0) {
// uBit.serial.printf("A1\r\n");
}
}
// left : pins 0 (backward) and 16 (forward)
// right: pins 8 (backward) and 12 (forward)
if (bwd == 1) {
// -3 to -8
if (lft == 1) {
// backward with slow left turn
if (lft_rgt_lvl > -9 && lft_rgt_lvl < -2) {
// uBit.serial.printf("B2\r\n");
// left wheel slower than right, same direction of rotation
p0_val = (int) ((p8_val * (10 + lft_rgt_lvl)) / 10);
p12_val = 0;
p16_val = 0;
// backward with faster left turn
} else {
// -9 to -10
// uBit.serial.printf("C2\r\n");
// left wheel slower than right, opposite direction of rotation. Note, for extreme turns, could run this wheel faster than the other.
p16_val = (int) ((p8_val * (-8 - lft_rgt_lvl)) * 0.5);
p0_val = 0;
p12_val = 0;
}
} else if (rgt == 1) {
// backward with slow right turn
// 3 to 8
if (lft_rgt_lvl < 9) {
// uBit.serial.printf("D2\r\n");
// right wheel slower than left, same direction of rotation
p8_val = (int) ((p0_val * (10 - lft_rgt_lvl)) / 10);
p12_val = 0;
p16_val = 0;
// backward with faster right turn
} else {
// 9 to 10
// right wheel slower than left, opposite direction of rotation
// uBit.serial.printf("E2\r\n");
p12_val = (int) ((p0_val * (lft_rgt_lvl - 8)) * 0.5);
p8_val = 0;
p16_val = 0;
}
} else if (lft == 0 && rgt == 0) {
// uBit.serial.printf("A2\r\n");
}
}
// uBit.serial.printf("fwd: %d bwd: %d lft: %d rgt: %d bwd_fwd_lvl: %d lft_rgt_lvl: %d p0_val:%d p8_val:%d p12_val:%d p16_val:%d\r\n",fwd,bwd,lft,rgt,bwd_fwd_lvl,lft_rgt_lvl,p0_val,p8_val,p12_val,p16_val);
uBit.io.P0.setAnalogValue (p0_val);
uBit.io.P8.setAnalogValue (p8_val);
uBit.io.P12.setAnalogValue(p12_val);
uBit.io.P16.setAnalogValue(p16_val);
}
void setConnectedIndicator() {
if (connected == 1) {
uBit.display.print("C");
} else {
uBit.display.print("D");
}
}
void onConnected(MicroBitEvent)
{
connected = 1;
setConnectedIndicator();
}
void onDisconnected(MicroBitEvent)
{
connected = 0;
stop();
writePinsAnalog();
setConnectedIndicator();
}
void onTouchpadControlEvent(MicroBitEvent e)
{
int8_t ctrl1 = {(uint8_t)(e.value & 0xFF)};
int8_t ctrl2 = {(uint8_t)((e.value >> 8))};
uBit.serial.printf("ctrl1: %d ctrl2: %d\r\n",ctrl1,ctrl2);
if (ctrl1 == 0 && ctrl2 == 1) {
setIndicatorActivated();
return;
}
if (ctrl1 == 0 && ctrl2 == 0) {
setDeactivated();
return;
}
}
void onTouchpadMotionEvent(MicroBitEvent e)
{
// value[0] -ve=back +ve=forwards range:0-10
// 0=no movement forwards or backwards
// 1 to 10=forward speed (1=slowest, 10=fastest), -1 to -10 backwards
// value[1] -ve=left +ve=right range:0-10
// 0-2=no movement left or right (deliberately less sensitive than fwd/bwd control)
// +/- 3-8 gradually increasing turn
// +/- 9-10 sharp turn
bwd_fwd = {(int8_t)(e.value & 0xFF)};
lft_rgt = {(int8_t)((e.value >> 8))};
uBit.serial.printf("bwd_fwd: %d lft_rgt: %d\r\n",bwd_fwd,lft_rgt);
if (bwd_fwd == 0 && lft_rgt == 0) {
return;
}
fwd=0;
bwd=0;
lft=0;
rgt=0;
if (bwd_fwd > 0) {
fwd=1;
bwd=0;
bwd_fwd_lvl=bwd_fwd;
}
if (bwd_fwd < 0) {
bwd=1;
fwd=0;
bwd_fwd_lvl=bwd_fwd;
}
// left/right is deliberately less sensitive
if (lft_rgt < -2) {
lft=1;
rgt=0;
lft_rgt_lvl=lft_rgt;
}
if (lft_rgt > 2) {
rgt=1;
lft=0;
lft_rgt_lvl=lft_rgt;
}
setDirectionIndicators();
writePinsAnalog();
}
void onDpadControllerEvent(MicroBitEvent e)
{
// MES_DPAD_BUTTON_1_DOWN = right hand pad, up
// MES_DPAD_BUTTON_2_DOWN = right hand pad, down
// MES_DPAD_BUTTON_C_DOWN = left hand pad, left
// MES_DPAD_BUTTON_D_DOWN = left hand pad, right
uBit.serial.printf("event %d\n",e.value);
if (e.value == MES_DPAD_BUTTON_1_DOWN) {
fwd=1;
bwd_fwd_lvl=10;
}
if (e.value == MES_DPAD_BUTTON_1_UP) {
fwd=0;
bwd_fwd_lvl=0;
}
if (e.value == MES_DPAD_BUTTON_2_DOWN) {
bwd=1;
bwd_fwd_lvl=-10;
}
if (e.value == MES_DPAD_BUTTON_2_UP) {
bwd=0;
bwd_fwd_lvl=0;
}
if (e.value == MES_DPAD_BUTTON_C_DOWN) {
lft=1;
lft_rgt_lvl=-10;
}
if (e.value == MES_DPAD_BUTTON_C_UP) {
lft=0;
lft_rgt_lvl=0;
}
if (e.value == MES_DPAD_BUTTON_D_DOWN) {
rgt=1;
lft_rgt_lvl=10;
}
if (e.value == MES_DPAD_BUTTON_D_UP) {
rgt=0;
lft_rgt_lvl=0;
}
if (e.value == MES_DPAD_BUTTON_1_DOWN) {
dpadForwards();
} else if (e.value == MES_DPAD_BUTTON_1_UP || e.value == MES_DPAD_BUTTON_2_UP) {
stop();
writePinsDigital();
} else if (e.value == MES_DPAD_BUTTON_2_DOWN) {
dpadBackwards();
}
if (drive > 0) {
if (e.value == MES_DPAD_BUTTON_C_DOWN) {
dpadLeft();
} else {
if (e.value == MES_DPAD_BUTTON_D_DOWN) {
dpadRight();
} else {
if (e.value == MES_DPAD_BUTTON_C_UP || e.value == MES_DPAD_BUTTON_D_UP) {
if (drive == 1) {
dpadForwards();
} else {
dpadBackwards();
}
}
}
}
}
setDirectionIndicators();
writePinsDigital();
}
int main()
{
// Initialise the micro:bit runtime.
uBit.init();
bwd_fwd_lvl=0;
lft_rgt_lvl=0;
// Bitty Controller - No Pairing
uBit.display.scroll("BC-NP");
uBit.messageBus.listen(TOUCHPAD_MOTION, 0, onTouchpadMotionEvent);
uBit.messageBus.listen(TOUCHPAD_CONTROL, 0, onTouchpadControlEvent);
uBit.messageBus.listen(MES_DPAD_CONTROLLER_ID, 0, onDpadControllerEvent);
uBit.messageBus.listen(MICROBIT_ID_BLE, MICROBIT_BLE_EVT_CONNECTED, onConnected);
uBit.messageBus.listen(MICROBIT_ID_BLE, MICROBIT_BLE_EVT_DISCONNECTED, onDisconnected);
uBit.display.setDisplayMode(DISPLAY_MODE_GREYSCALE);
// If main exits, there may still be other fibers running or registered event handlers etc.
// Simply release this fiber, which will mean we enter the scheduler. Worse case, we then
// sit in the idle task forever, in a power efficient sleep.
release_fiber();
}