forked from PetoiCamp/OpenCat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OpenCat.ino
808 lines (729 loc) · 27.2 KB
/
OpenCat.ino
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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
/* Main Arduino sketch for OpenCat, the bionic quadruped walking robot.
Updates should be posted on GitHub: https://github.com/PetoiCamp/OpenCat
Rongzhong Li
Jan.3rd, 2021
Copyright (c) 2021 Petoi LLC.
This sketch may also includes others' codes under MIT or other open source liscence.
Check those liscences in corresponding module test folders.
Feel free to contact us if you find any missing references.
The MIT License
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.
*/
#define MAIN_SKETCH
#include "WriteInstinct/OpenCat.h"
#include <I2Cdev.h>
#include <MPU6050_6Axis_MotionApps20.h>
#define PACKET_SIZE 42
#define OVERFLOW_THRESHOLD 128
//#if OVERFLOW_THRESHOLD>1024-1024%PACKET_SIZE-1 // when using (1024-1024%PACKET_SIZE) as the overflow resetThreshold, the packet buffer may be broken
// and the reading will be unpredictable. it should be replaced with previous reading to avoid jumping
#define FIX_OVERFLOW
//#endif
#define HISTORY 2
int8_t lag = 0;
float ypr[3]; // [yaw, pitch, roll] yaw/pitch/roll container and gravity vector
float yprLag[HISTORY][3];
MPU6050 mpu;
#define OUTPUT_READABLE_YAWPITCHROLL
// MPU control/status vars
//bool dmpReady = false; // set true if DMP init was successful
uint8_t mpuIntStatus; // holds actual interrupt status byte from MPU
uint8_t devStatus; // return status after each device operation (0 = success, !0 = error)
uint16_t packetSize; // expected DMP packet size (default is 42 bytes)
uint16_t fifoCount; // count of all bytes currently in FIFO
uint8_t fifoBuffer[PACKET_SIZE]; // FIFO storage buffer
// orientation/motion vars
Quaternion q; // [w, x, y, z] quaternion container
VectorFloat gravity; // [x, y, z] gravity vector
// ================================================================
// === INTERRUPT DETECTION ROUTINE ===
// ================================================================
volatile bool mpuInterrupt = false; // indicates whether MPU interrupt pin has gone high
void dmpDataReady() {
mpuInterrupt = true;
}
// https://brainy-bits.com/blogs/tutorials/ir-remote-arduino
#include <IRremote.h>
/*-----( Declare objects )-----*/
IRrecv irrecv(IR_RECEIVER); // create instance of 'irrecv'
decode_results results; // create instance of 'decode_results'
String translateIR() // takes action based on IR code received
// describing Remote IR codes.
{
switch (results.value) {
//IR signal key on IR remote //key mapping
case 0xFFA25D: /*PTLF(" CH-"); */ return (F(K00));
case 0xFF629D: /*PTLF(" CH"); */ return (F(K01));
case 0xFFE21D: /*PTLF(" CH+"); */ return (F(K02));
case 0xFF22DD: /*PTLF(" |<<"); */ return (F(K10));
case 0xFF02FD: /*PTLF(" >>|"); */ return (F(K11));
case 0xFFC23D: /*PTLF(" >||"); */ return (F(K12));
case 0xFFE01F: /*PTLF(" -"); */ return (F(K20));
case 0xFFA857: /*PTLF(" +"); */ return (F(K21));
case 0xFF906F: /*PTLF(" EQ"); */ return (F(K22));
case 0xFF6897: /*PTLF(" 0"); */ return (F(K30));
case 0xFF9867: /*PTLF(" 100+"); */ return (F(K31));
case 0xFFB04F: /*PTLF(" 200+"); */ return (F(K32));
case 0xFF30CF: /*PTLF(" 1"); */ return (F(K40));
case 0xFF18E7: /*PTLF(" 2"); */ return (F(K41));
case 0xFF7A85: /*PTLF(" 3"); */ return (F(K42));
case 0xFF10EF: /*PTLF(" 4"); */ return (F(K50));
case 0xFF38C7: /*PTLF(" 5"); */ return (F(K51));
case 0xFF5AA5: /*PTLF(" 6"); */ return (F(K52));
case 0xFF42BD: /*PTLF(" 7"); */ return (F(K60));
case 0xFF4AB5: /*PTLF(" 8"); */ return (F(K61));
case 0xFF52AD: /*PTLF(" 9"); */ return (F(K62));
case 0xFFFFFFFF: return (""); //Serial.println(" REPEAT");
default: {
//Serial.println(results.value, HEX);
}
return (""); //Serial.println("null");
}// End Case
//delay(100); // Do not get immediate repeat //no need because the main loop is slow
// The control could be organized in another way, such as:
// forward/backward to change the gaits corresponding to different speeds.
// left/right key for turning left and right
// number keys for different postures or behaviors
}
char token;
char lastToken;
#define CMD_LEN 10
char *lastCmd = new char[CMD_LEN];
char *newCmd = new char[CMD_LEN];
byte newCmdIdx = 0;
byte hold = 0;
int8_t offsetLR = 0;
bool checkGyro = true;
int8_t skipGyro = 2;
#define COUNT_DOWN 60
uint8_t timer = 0;
//#define SKIP 1
#ifdef SKIP
byte updateFrame = 0;
#endif
byte firstMotionJoint;
byte jointIdx = 0;
//bool Xconfig = false;
unsigned long usedTime = 0;
void getFIFO() {//get FIFO only without further processing
while (fifoCount < packetSize) fifoCount = mpu.getFIFOCount();
// read a packet from FIFO
mpu.getFIFOBytes(fifoBuffer, packetSize);
// track FIFO count here in case there is > 1 packet available
// (this lets us immediately read more without waiting for an interrupt)
fifoCount -= packetSize;
}
void getYPR() {//get YPR angles from FIFO data, takes time
// wait for MPU interrupt or extra packet(s) available
//while (!mpuInterrupt && fifoCount < packetSize) ;
if (mpuInterrupt || fifoCount >= packetSize)
{
// reset interrupt flag and get INT_STATUS byte
mpuInterrupt = false;
mpuIntStatus = mpu.getIntStatus();
// get current FIFO count
fifoCount = mpu.getFIFOCount();
//PTL(fifoCount);
// check for overflow (this should never happen unless our code is too inefficient)
if ((mpuIntStatus & 0x10) || fifoCount > OVERFLOW_THRESHOLD) { //1024) {
// reset so we can continue cleanly
mpu.resetFIFO();
// otherwise, check for DMP data ready interrupt (this should happen frequently)
// -- RzLi --
#ifdef FIX_OVERFLOW
#ifdef DEVELOPER
PTLF("reset FIFO!");//FIFO overflow! Using last reading!
#endif
lag = (lag - 1 + HISTORY) % HISTORY;
#endif
// --
}
else if (mpuIntStatus & 0x02) {
// wait for correct available data length, should be a VERY short wait
getFIFO();
#ifdef OUTPUT_READABLE_YAWPITCHROLL
// display Euler angles in degrees
mpu.dmpGetQuaternion(&q, fifoBuffer);
mpu.dmpGetGravity(&gravity, &q);
mpu.dmpGetYawPitchRoll(ypr, &q, &gravity);
#ifdef MPU_YAW180
ypr[2] = -ypr[2];
ypr[1] = -ypr[1];
#endif
#endif
for (byte g = 1; g < 3; g++)
ypr[g] *= degPerRad; //ypr converted to degree
// overflow is detected after the ypr is read. it's necessary to keep a lag record of previous reading. -- RzLi --
#ifdef FIX_OVERFLOW
for (byte g = 1; g < 3; g++) {
yprLag[lag][g] = ypr[g];
ypr[g] = yprLag[(lag - 1 + HISTORY) % HISTORY][g] ;
}
lag = (lag + 1) % HISTORY;
#endif
#ifdef DEVELOPER
PT(ypr[0]);
PTF("\t");
PT(ypr[1]);
PTF("\t");
PTL(ypr[2]);
#endif
}
}
}
void checkBodyMotion() {
//if (!dmpReady) return;
getYPR();
// --
//deal with accidents
if (fabs(ypr[1]) > LARGE_PITCH || fabs(ypr[2]) > LARGE_ROLL) {//wait until stable
if (!hold)
for (byte w = 0; w < 50; w++) {
getYPR();
delay(10);
}
if (fabs(ypr[1]) > LARGE_PITCH || fabs(ypr[2]) > LARGE_ROLL) {//check again
if (!hold) {
token = T_SKILL;
if (fabs(ypr[2]) > LARGE_ROLL) {
strcpy(newCmd, "rc");
newCmdIdx = 4;
}
else {
strcpy(newCmd, ypr[1] < LARGE_PITCH ? "lifted" : "dropped");
newCmdIdx = 1;
}
}
hold = 10;
}
}
// recover
else if (hold) {
if (hold == 1) {
token = T_SKILL;
strcpy(newCmd, "balance");
newCmdIdx = 1;
}
hold --;
if (!hold) {
char temp[CMD_LEN];
strcpy(temp, newCmd);
strcpy(newCmd, lastCmd);
strcpy(lastCmd, temp);
newCmdIdx = 1;
meow();
}
}
//calculate deviation
for (byte i = 0; i < 2; i++) {
RollPitchDeviation[i] = ypr[2 - i] - motion.expectedRollPitch[i]; //all in degrees
//PTL(RollPitchDeviation[i]);
RollPitchDeviation[i] = sign(ypr[2 - i]) * max(fabs(RollPitchDeviation[i]) - levelTolerance[i], 0);//filter out small angles
}
//PTL(jointIdx);
}
void setup() {
pinMode(BUZZER, OUTPUT);
#ifdef PIXEL_PIN
pixels.begin(); // INITIALIZE NeoPixel strip object (REQUIRED)
pixels.clear(); // Set all pixel colors to 'off'
// pixels.Color() takes RGB values, from 0,0,0 up to 255,255,255
pixels.setPixelColor(3, pixels.Color(0, 0, LIT_ON));
pixels.show(); // Send the updated pixel colors to the hardware.
#endif
// join I2C bus (I2Cdev library doesn't do this automatically)
#if I2CDEV_IMPLEMENTATION == I2CDEV_ARDUINO_WIRE
Wire.begin();
//Wire.setClock(400000);
TWBR = 24; // 400kHz I2C clock (200kHz if CPU is 8MHz)
#elif I2CDEV_IMPLEMENTATION == I2CDEV_BUILTIN_FASTWIRE
Fastwire::setup(400, true);
#endif
Serial.begin(BAUD_RATE);
Serial.setTimeout(10);
while (!Serial);
// wait for ready
while (Serial.available() && Serial.read()); // empty buffer
delay(100);
PTLF("\n* Start *");
PTLF("Initialize I2C");
PTLF("Connect MPU6050");
mpu.initialize();
//do
{
delay(500);
// verify connection
PTLF("Test connection");
PTL(mpu.testConnection() ? F("MPU successful") : F("MPU failed"));//sometimes it shows "failed" but is ok to bypass.
} //while (!mpu.testConnection());
// load and configure the DMP
do {
PTLF("Initialize DMP");
devStatus = mpu.dmpInitialize();
delay(500);
// supply your own gyro offsets here, scaled for min sensitivity
for (byte i = 0; i < 4; i++) {
PT(EEPROMReadInt(MPUCALIB + 4 + i * 2));
PT(" ");
}
PTL();
mpu.setZAccelOffset(EEPROMReadInt(MPUCALIB + 4));
mpu.setXGyroOffset(EEPROMReadInt(MPUCALIB + 6));
mpu.setYGyroOffset(EEPROMReadInt(MPUCALIB + 8));
mpu.setZGyroOffset(EEPROMReadInt(MPUCALIB + 10));
// make sure it worked (returns 0 if so)
if (devStatus == 0) {
// turn on the DMP, now that it's ready
PTLF("Enable DMP");
mpu.setDMPEnabled(true);
// enable Arduino interrupt detection
PTLF("Enable interrupt");
attachInterrupt(INTERRUPT, dmpDataReady, RISING);
mpuIntStatus = mpu.getIntStatus();
// set our DMP Ready flag so the main loop() function knows it's okay to use it
PTLF("DMP ready!");
//dmpReady = true;
// get expected DMP packet size for later comparison
packetSize = mpu.dmpGetFIFOPacketSize();
} else {
// ERROR!
// 1 = initial memory load failed
// 2 = DMP configuration updates failed
// (if it's going to break, usually the code will be 1)
PTLF("DMP failed (code ");
PT(devStatus);
PTLF(")");
PTL();
}
} while (devStatus);
//opening music
#if WALKING_DOF == 8
playMelody(MELODY);
#endif
//IR
{
//PTLF("IR Receiver Button Decode");
irrecv.enableIRIn(); // Start the receiver
}
assignSkillAddressToOnboardEeprom();
PTL();
// servo
{ pwm.begin();
pwm.setPWMFreq(60 * PWM_FACTOR); // Analog servos run at ~60 Hz updates
delay(200);
//meow();
strcpy(lastCmd, "rest");
motion.loadBySkillName(lastCmd);
for (int8_t i = DOF - 1; i >= 0; i--) {
pulsePerDegree[i] = float(PWM_RANGE) / servoAngleRange(i);
servoCalibs[i] = servoCalib(i);
calibratedDuty0[i] = SERVOMIN + PWM_RANGE / 2 + float(middleShift(i) + servoCalibs[i]) * pulsePerDegree[i] * rotationDirection(i) ;
//PTL(SERVOMIN + PWM_RANGE / 2 + float(middleShift(i) + servoCalibs[i]) * pulsePerDegree[i] * rotationDirection(i) );
calibratedPWM(i, motion.dutyAngles[i]);
delay(20);
}
randomSeed(analogRead(0));//use the fluctuation of voltage caused by servos as entropy pool
shutServos();
token = T_REST;
}
beep(30);
pinMode(BATT, INPUT);
pinMode(BUZZER, OUTPUT);
meow();
}
void loop() {
float voltage = analogRead(BATT);
if (voltage <
#ifdef NyBoard_V0_1
650
#else
300
#endif
) { //give the cat a break when voltage drops after sprint
//adjust the thresholds according to your batteries' voltage
//if set too high, the robot will keep crying.
//If too low, Nybble may faint due to temporary voltage drop
PTL("check battery");
PTL(voltage);//relative voltage
meow();
}
else {
newCmd[0] = '\0';
newCmdIdx = 0;
// input block
//else if (t == 0) {
if (irrecv.decode(&results)) {
String IRsig = irParser(translateIR());
//PTL(IRsig);
if (IRsig != "") {
strcpy(newCmd, IRsig.c_str());
if (strlen(newCmd) == 1)
token = newCmd[0];
else
token = T_SKILL;
newCmdIdx = 2;
}
irrecv.resume(); // receive the next value
}
if ( Serial.available() > 0) {
token = Serial.read();
newCmdIdx = 3;
}
// MPU block
{
#ifdef GYRO //if opt out the gyro, the calculation can be really fast
if (checkGyro) {
if (!(timer % skipGyro)) {
checkBodyMotion();
}
else if (mpuInterrupt || fifoCount >= packetSize)
{
// reset interrupt flag and get INT_STATUS byte
mpuInterrupt = false;
mpuIntStatus = mpu.getIntStatus();
getFIFO();
}
}
#endif
}
// accident block
//...
//...
//for obstacle avoidance and auto recovery
if (newCmdIdx) {
PTL(token);
beep(newCmdIdx * 4);
// this block handles argumentless tokens
switch (token) {
// case T_HELP: {
// PTLF("* info *");// print the help document. not implemented on NyBoard Vo due to limited space
// break;
// }
case T_REST: {
strcpy(lastCmd, "rest");
skillByName(lastCmd);
break;
}
case T_GYRO: {
if (!checkGyro)
checkBodyMotion();
// countDown = COUNT_DOWN;
checkGyro = !checkGyro;
token = T_SKILL;
break;
}
case T_PAUSE: {
tStep = !tStep;
if (tStep)
token = T_SKILL;
else
shutServos();
break;
}
// case T_RAMP: { //if the robot is on a ramp, flip the adaption direction
// ramp = (ramp == 1) ? -1.5 : 1;
// token = T_SKILL;
// break;
// }
case T_SAVE: {
PTLF("save offset");
saveCalib(servoCalibs);
break;
}
case T_ABORT: {
PTLF("aborted");
for (byte i = 0; i < DOF; i++) {
servoCalibs[i] = servoCalib( i);
}
break;
}
// this block handles array like arguments
case T_INDEXED: //indexed joint motions: joint0, angle0, joint1, angle1, ...
case T_LISTED: //list of all 16 joint: angle0, angle2,... angle15
//case T_MELODY: //for melody
{
String inBuffer = Serial.readStringUntil('~');
int8_t numArg = inBuffer.length();
char* list = inBuffer.c_str();
char *targetFrame = new char [DOF];
for (int i = 0; i < DOF; i += 1) {
targetFrame[i] = currentAng[i];
}
if (token == T_INDEXED) {
for (int i = 0; i < numArg; i += 2) {
targetFrame[list[i]] = list[i + 1];
}
}
else if (token == T_LISTED) {
for (int i = 0; i < DOF; i += 1) {
targetFrame[i] = list[i];
}
}
transform(targetFrame, 1, 3); //need to add angleDataRatio if the angles are large
delete [] targetFrame;
// if (token == T_INDEXED) {
// for (int i = 0; i < numArg; i += 2) {
// calibratedPWM(list[i], list[i + 1]);
// }
// }
// else if (token == T_LISTED) {
// allCalibratedPWM(list);
// }
break;
}
case T_JOINTS: { //show the list of current joint anles
printRange(DOF);
printList(currentAng);
break;
}
case T_CALIBRATE: //calibration
case T_MOVE: //move jointIndex to angle
case T_MEOW: //meow (repeat, increament)
case T_BEEP: //beep(tone, duration): tone 0 is pause, duration range is 0~255
{
String inBuffer = Serial.readStringUntil('\n');
char* temp = new char[30];
strcpy(temp, inBuffer.c_str());
char *pch;
pch = strtok (temp, " ,");
do { //it supports combining multiple commands at one time
//for example: "m8 40 m8 -35 m 0 50" can be written as "m8 40 8 -35 0 50"
//the combined commands should be less than four. string len <=30 to be exact.
int target[2] = {};
byte inLen = 0;
for (byte b = 0; b < 2 && pch != NULL; b++) {
target[b] = atoi(pch);
pch = strtok (NULL, " ,\t");
inLen++;
}
PT(token);
printList(target, 2);
float angleInterval = 0.2;
int angleStep = 0;
if (token == T_CALIBRATE) {
//PTLF("calibrating [ targetIdx, angle ]: ");
if (strcmp(lastCmd, "c")) { //first time entering the calibration function
strcpy(lastCmd, "c");
motion.loadBySkillName("calib");
transform( motion.dutyAngles);
checkGyro=false;
}
if (inLen == 2)
servoCalibs[target[0]] = target[1];
PTL();
printRange(DOF);
printList(servoCalibs);
//yield();
int duty = SERVOMIN + PWM_RANGE / 2 + float(middleShift(target[0]) + servoCalibs[target[0]] + motion.dutyAngles[target[0]]) * pulsePerDegree[target[0]] * rotationDirection(target[0]);
pwm.setPWM(pin(target[0]), 0, duty);
}
else if (token == T_MOVE) {
//SPF("moving [ targetIdx, angle ]: ");
angleStep = floor((target[1] - currentAng[target[0]]) / angleInterval);
for (int a = 0; a < abs(angleStep); a++) {
int duty = SERVOMIN + PWM_RANGE / 2 + float(middleShift(target[0]) + servoCalibs[target[0]] + currentAng[target[0]] + a * angleInterval * angleStep / abs(angleStep)) * pulsePerDegree[target[0]] * rotationDirection(target[0]);
pwm.setPWM(pin(target[0]), 0, duty);
}
currentAng[target[0]] = motion.dutyAngles[target[0]] = target[1];
}
else if (token == T_MEOW) {
meow(target[0], 0, 50, 200, 1 + target[1]);
}
else if (token == T_BEEP) {
beep(target[0], (byte)target[1]);
}
delay(50);
} while (pch != NULL);
delete []pch;
delete []temp;
break;
}
// case T_XLEG: {
// for (byte s = 0; s < 23; s++) {
//
// motion.loadDataFromProgmem(steps[s]);
// transform(motion.dutyAngles, 1,2);
// }
// skillByName("balance");
// break;
// }
default: if (Serial.available() > 0) {
String inBuffer = Serial.readStringUntil('\n');
strcpy(newCmd, inBuffer.c_str());
}
}
while (Serial.available() && Serial.read()); //flush the remaining serial buffer in case the commands are parsed incorrectly
//check above
if (strcmp(newCmd, "") && strcmp(newCmd, lastCmd) ) {
// PT("compare lastCmd ");
// PT(lastCmd);
// PT(" with newCmd ");
// PT(token);
// PT(newCmd);
// PT("\n");
if (token == T_UNDEFINED) {}; //some words for undefined behaviors
if (token == T_SKILL) { //validating key
motion.loadBySkillName(newCmd);
char lr = newCmd[strlen(newCmd) - 1];
offsetLR = (lr == 'L' ? 15 : (lr == 'R' ? -15 : 0));
//motion.info();
timer = 0;
if (strcmp(newCmd, "balance") && strcmp(newCmd, "lifted") && strcmp(newCmd, "dropped") )
strcpy(lastCmd, newCmd);
// Xconfig = strcmp(newCmd, "wkX") ? false : true;
#ifdef POSTURE_WALKING_FACTOR
postureOrWalkingFactor = (motion.period == 1 ? 1 : POSTURE_WALKING_FACTOR);
#endif
// if posture, start jointIdx from 0
// if gait, walking DOF = 8, start jointIdx from 8
// walking DOF = 12, start jointIdx from 4
firstMotionJoint = (motion.period <= 1) ? 0 : DOF - WALKING_DOF;
// if (Xconfig) { //for smooth transition
// int *targetAngle;
// targetAngle = new int [WALKING_DOF];
// for (byte i = 0; i < WALKING_DOF; i++)
// targetAngle[i] = motion.dutyAngles[i];
// targetAngle[WALKING_DOF - 6] = motion.dutyAngles[WALKING_DOF - 2] -5;
// targetAngle[WALKING_DOF - 5] = motion.dutyAngles[WALKING_DOF - 1] -5;
// targetAngle[WALKING_DOF - 2] = motion.dutyAngles[WALKING_DOF - 2] + 180;
// targetAngle[WALKING_DOF - 1] = motion.dutyAngles[WALKING_DOF - 1] + 180;
// transform( targetAngle, 1,2, firstMotionJoint);
// delete [] targetAngle;
// }
// else
if (motion.period < 1) {
int8_t repeat = motion.loopCycle[2] - 1;
byte frameSize = 20;
for (byte c = 0; c < abs(motion.period); c++) { //the last two in the row are transition speed and delay
transform(motion.dutyAngles + c * frameSize, motion.angleDataRatio, motion.dutyAngles[16 + c * frameSize] / 4.0);
#ifdef GYRO //if opt out the gyro, the calculation can be really fast
if (motion.dutyAngles[18 + c * frameSize]) {
int triggerAxis = motion.dutyAngles[18 + c * frameSize];
int triggerAngle = motion.dutyAngles[19 + c * frameSize];
float currentYpr = ypr[abs(triggerAxis)];
float previousYpr = currentYpr;
while (1) {
getYPR();
currentYpr = ypr[abs(triggerAxis)];
PT(currentYpr);
PTF("\t");
PTL(triggerAngle);
if ((180 - fabs(currentYpr) > 2) //skip the angle when the reading jumps from 180 to -180
&& (triggerAxis * currentYpr < triggerAxis * triggerAngle && triggerAxis * previousYpr > triggerAxis * triggerAngle )
) //the sign of triggerAxis will deterine whether the current angle should be larger or smaller than the trigger angle
break;
previousYpr = currentYpr;
}
}
else
#endif
{
delay(motion.dutyAngles[17 + c * frameSize] * 50);
}
if (c == motion.loopCycle[1] && repeat > 0) {
c = motion.loopCycle[0] - 1;
repeat--;
}
}
skillByName("balance", 1, 2, false);
strcpy(lastCmd, "balance");
for (byte a = 0; a < DOF; a++)
currentAdjust[a] = 0;
hold = 0;
}
else {
transform( motion.dutyAngles, motion.angleDataRatio, 1, firstMotionJoint);
}
jointIdx = 3;//DOF; to skip the large adjustment caused by MPU overflow. joint 3 is not used.
if (!strcmp(newCmd, "rest")) {
shutServos();
token = T_REST;
}
}
else {
lastCmd[0] = token;
memset(lastCmd + 1, '\0', CMD_LEN - 1);
}
}
}
//motion block
{
if (token == T_SKILL) {
if (jointIdx == DOF) {
#ifdef SKIP
if (updateFrame++ == SKIP) {
updateFrame = 0;
#endif
// timer = (timer + 1) % abs(motion.period);
timer += tStep;
if (timer == abs(motion.period)) {
timer = 0;
// if (countDown == 0)
// checkGyro = true;
// else countDown--;
}
else if (timer == 255)
timer = abs(motion.period) - 1;
#ifdef SKIP
}
#endif
jointIdx =
#ifdef HEAD //start from head
0;
#else
#ifdef TAIL
2;
#else
DOF - WALKING_DOF;
#endif
#endif
}
#ifndef TAIL
if (jointIdx == 1)
jointIdx = DOF - WALKING_DOF;
#endif
if (jointIdx < firstMotionJoint && abs(motion.period) > 1) {
calibratedPWM(jointIdx, (jointIdx != 1 ? offsetLR : 0) //look left or right
+ 10 * sin (timer * (jointIdx + 2) * M_PI / abs(motion.period)) //look around
#ifdef GYRO
+ (checkGyro ? adjust(jointIdx) : 0)
#endif
);
}
else if (jointIdx >= firstMotionJoint) {
int dutyIdx = timer * WALKING_DOF + jointIdx - firstMotionJoint;
calibratedPWM(jointIdx, motion.dutyAngles[dutyIdx]*motion.angleDataRatio//+ ((Xconfig && (jointIdx == 14 || jointIdx == 15)) ? 180 : 0)
#ifdef GYRO
+ (checkGyro ?
(!(timer % skipGyro) ?
adjust(jointIdx)
: currentAdjust[jointIdx])
: 0)
//+ (checkGyro ? ((!(timer % skipGyro) && countDown == 0) ? adjust(jointIdx) : currentAdjust[jointIdx]) : 0)
#endif
);
// if (jointIdx == 8) {
// PT(currentAdjust[jointIdx]); PT("\t"); PTL( adjust(jointIdx) );
// }
}
jointIdx++;
}
else
timer = 0;
}
}
}