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 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 |
/*VR618 * Copyright (C) 2014 Velleman nv * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file for details. * */ #include <Servo.h> // The ALLBOT library needs the servo.h library #include <ALLBOT.h> // Do not forget to include the ALLBOT library, download it from the manuals.velleman.eu website ALLBOT BOT(18); // Number of motors enum MotorName { // Giving each motor a name hipFrontLeft, kneeFrontLeft, hipFrontRight, kneeFrontRight, hipMiddleRight, kneeMiddleRight, hipRearRight, kneeRearRight, hipRearLeft, kneeRearLeft, hipMiddleLeft, kneeMiddleLeft, ankleFrontRight, ankleFrontLeft, ankleMiddleRight, ankleMiddleLeft, ankleRearRight, ankleRearLeft }; long randNumber0; // This variable is used for random function long randNumber1; // This variable is used for random function int sounderPin = 13; // Declaring what pin the sounder on the VRSSM is connected to String rawcommand; // Global variable that stores the raw received IR command String command; // Global variable that stores part of the decoded IR command int times; // Global variable that stores part the received IR command int speedms; // Global variable that stores part the received IR command boolean IRreceive = false; // Set this to true if you want to use the IR remote boolean receivelog = false; // Set this to true if you want to see the serial messages for debugging the IR commands void setup() { //BOT.attach(motorname, pin, init. angle, flipped, offset); BOT.attach(hipFrontRight, 31, 45, 1, 0); //SV10 BOT.attach(hipFrontLeft, 24, 45, 0, 0); //SV03 BOT.attach(hipMiddleRight, 48, 90, 1, 0); //SV27 BOT.attach(hipMiddleLeft, 38, 90, 0, 0); //SV17 BOT.attach(hipRearRight, 49, 45, 0, 0); //SV28 BOT.attach(hipRearLeft, 36, 45, 1, 0); //SV15 BOT.attach(kneeFrontRight, 32, 135, 1, 0); //SV11 BOT.attach(kneeFrontLeft, 23, 135, 0, 0); //SV02 BOT.attach(kneeMiddleRight, 47, 135, 1, 0); //SV26 BOT.attach(kneeMiddleLeft, 37, 135, 0, 0); //SV16 BOT.attach(kneeRearRight, 50, 135, 1, 0); //SV29 BOT.attach(kneeRearLeft, 35, 135, 0, 0); //SV14 BOT.attach(ankleFrontRight, 33, 0, 0, 0); //SV12 BOT.attach(ankleFrontLeft, 22, 0, 1, 0); //SV01 BOT.attach(ankleMiddleRight, 46, 0, 0, 0); //SV25 BOT.attach(ankleMiddleLeft, 39, 0, 1, 0); //SV18 BOT.attach(ankleRearRight, 51, 0, 0, 0); //SV30 BOT.attach(ankleRearLeft, 34, 0, 1, 0); //SV13 // Perform the standup sequence standup(); //INIT sounder pinMode(sounderPin, OUTPUT); //wait for joints to be initialized delay(500); // Starting the hardware UART, necessary for receiving IR if (IRreceive == true) // Check if required (when Serial is started servo1 connector will not work!) { Serial.begin(2400); Serial.setTimeout(100); Serial.println("serial communication started"); } // INIT the random seed, this is used to create random actions randomSeed(analogRead(5)); // Chirp for ready chirp(1, 50); chirp(1, 255); chirp(3, 0); } //-------------------------------------------------------------- void loop() // Main program loop { if (IRreceive == true) // Choose between IR commands or random action { getcommand(); // Listen for IR command executecommand(); // Execute any receveid commands } else { randNumber0 = random(0, 18); randNumber1 = random(0, 20); delay(randNumber1*100); switch (randNumber0) { case 0: randNumber0 = random(50, 255); leanforward(randNumber0); break; case 1: randNumber0 = random(50, 255); leanbackward(randNumber0); break; case 2: randNumber0 = random(50, 255); leanleft(randNumber0); break; case 3: randNumber0 = random(50, 255); leanright(randNumber0); break; case 4: randNumber0 = random(50, 255); //lookleft(randNumber0); break; case 5: randNumber0 = random(50, 255); //lookright(randNumber0); break; case 6: randNumber0 = random(50, 255); randNumber1 = random(1, 5); turnleft(randNumber1, randNumber0); break; case 7: randNumber0 = random(50, 255); randNumber1 = random(1, 5); turnright(randNumber1, randNumber0); break; case 8: randNumber0 = random(50, 150); randNumber1 = random(2, 10); walkforward(randNumber1, randNumber0); break; case 9: randNumber0 = random(50, 150); randNumber1 = random(2, 10); walkbackward(randNumber1, randNumber0); break; case 10: randNumber0 = random(50, 150); randNumber1 = random(2, 10); //walkleft(randNumber1, randNumber0); break; case 11: randNumber0 = random(50, 150); randNumber1 = random(2, 10); //walkright(randNumber1, randNumber0); break; case 12: randNumber0 = random(5, 30); randNumber1 = random(2, 10); //scared(randNumber1, randNumber0); break; case 13: randNumber0 = random(0, 255); randNumber1 = random(1, 30); chirp(randNumber1, randNumber0); break; case 14: randNumber0 = random(50, 100); randNumber1 = random(1, 5); wavefrontright(randNumber1, randNumber0); break; case 15: randNumber0 = random(50, 100); randNumber1 = random(1, 5); wavefrontleft(randNumber1, randNumber0); break; case 16: randNumber0 = random(50, 100); randNumber1 = random(1, 5); waverearright(randNumber1, randNumber0); break; case 17: randNumber0 = random(50, 100); randNumber1 = random(1, 5); waverearleft(randNumber1, randNumber0); break; } } } //-------------------------------------------------------------- void getcommand (void) // This is the routine that listens and decodes any IR commands. Decodes commands end up in the global vars. { int space1 = 0; int space2 = 0; if (Serial.available()) { rawcommand = Serial.readString(); if (receivelog){ Serial.println("START " + rawcommand + " END" + "\r\n" + "Received string length = " + rawcommand.length() + "\r\n" + "End character > at index = " + rawcommand.indexOf('>')); } //checking and deleting rubbish data at start of received command if ((rawcommand.indexOf('<') != 0) && (rawcommand.indexOf('<') != -1)) { rawcommand.remove(0, rawcommand.indexOf('<')); } //check if received command is correct if ((rawcommand.charAt(0) == '<') && (rawcommand.indexOf('>') <= 12) && (rawcommand.indexOf('>') != -1) && (rawcommand.length() > 7)) { if (receivelog){ Serial.println("Command is VALID"); } //breakdown into chunks //command command = rawcommand.substring(1, 3); //finding the spaces to find the times and speedms for (int i=0; i <= rawcommand.length(); i ++) { if ((rawcommand.charAt(i) == ' ') && (space1 == 0)) { space1 = i; } else if ((rawcommand.charAt(i) == ' ') && (space2 == 0)) { space2 = i; } } //Setting the command variables and checking if they are indeed a number (toInt()). //times times = rawcommand.substring(space1+1, space2).toInt(); //speedms speedms = rawcommand.substring(space2+1, rawcommand.indexOf('>')).toInt(); if (receivelog){ Serial.println("decoded commands are:"); Serial.flush(); Serial.println("command = " + command); Serial.flush(); Serial.println("times = " + times); Serial.flush(); Serial.println("speedms = " + speedms); } } else { if (receivelog){ Serial.println("Command is NOT valid"); } resetserial(); } } } //-------------------------------------------------------------- void resetserial (void) // This clears any received IR commands that where received in the serial buffer while the robot was execution a command. { //resetting all variables rawcommand = ""; command = ""; times = 0; speedms = 0; //flushing the serial buffer (64 byte) so there are no stored movements that need to be handled (annoying)... while (Serial.available()) { Serial.read(); } } //-------------------------------------------------------------- void executecommand (void) // Execute the commands that are stored in the global vars.) { if (command == "WF") { walkforward(times, (speedms*5)); resetserial(); } else if (command == "WB") { walkbackward(times, (speedms*5)); resetserial(); } else if (command == "TR") { turnright(times, (speedms*5)); resetserial(); } else if (command == "TL") { turnleft(times, (speedms*5)); resetserial(); } else if (command == "LF") { leanforward(speedms*5); resetserial(); } else if (command == "LB") { leanbackward(speedms*5); resetserial(); } else if (command == "LL") { leanleft(speedms*5); resetserial(); } else if (command == "LR") { leanright(speedms*5); resetserial(); } else if (command == "FR") { wavefrontright(times, speedms*5); resetserial(); } else if (command == "FL") { wavefrontleft(times, speedms*5); resetserial(); } else if (command == "RR") { waverearright(times, speedms*5); resetserial(); } else if (command == "RL") { waverearleft(times, speedms*5); resetserial(); } } //-------------------------------------------------------------- void chirp(int beeps, int speedms){ for (int i = 0; i < beeps; i++){ for (int i = 0; i < 255; i++){ digitalWrite(sounderPin, HIGH); delayMicroseconds((355-i)+ (speedms*2)); digitalWrite(sounderPin, LOW); delayMicroseconds((355-i)+ (speedms*2)); } delay(30); } } //-------------------------------------------------------------- void turnright (int steps, int speedms) { for (int i = 0; i < steps; i++){ BOT.move(kneeFrontRight, 130); //Lift 3a BOT.move(kneeRearRight, 130); BOT.move(kneeMiddleLeft, 130); BOT.animate(speedms); BOT.move(hipFrontRight, 70); //turn 3a right BOT.move(hipRearRight, 20); BOT.move(hipMiddleLeft, 65); BOT.animate(speedms); BOT.move(kneeFrontRight, 100); //Drop 3a BOT.move(kneeRearRight, 100); BOT.move(kneeMiddleLeft, 100); BOT.animate(speedms); BOT.move(kneeFrontLeft, 130); //Lift 3b BOT.move(kneeRearLeft, 130); BOT.move(kneeMiddleRight, 130); BOT.animate(speedms); BOT.move(hipFrontLeft, 20); //turn 3b right BOT.move(hipRearLeft, 70); BOT.move(hipMiddleRight, 115); BOT.animate(speedms); BOT.move(kneeFrontLeft, 100); //Drop 3b + small ankle movement BOT.move(kneeRearLeft, 100); BOT.move(kneeMiddleRight, 100); BOT.animate(speedms); BOT.move(hipFrontRight, 45); //Swivel 3a&b back to center BOT.move(hipRearRight, 45); BOT.move(hipMiddleLeft, 90); BOT.move(hipFrontLeft, 45); //turn 3b right BOT.move(hipRearLeft, 45); BOT.move(hipMiddleRight, 90); BOT.animate(speedms); } } //******************************************************************************************************************** void turnleft (int steps, int speedms) { for (int i = 0; i < steps; i++){ BOT.move(kneeFrontRight, 130); //Lift 3a BOT.move(kneeRearRight, 130); BOT.move(kneeMiddleLeft, 130); BOT.animate(speedms); BOT.move(hipFrontRight, 20); //turn 3a left BOT.move(hipRearRight, 70); BOT.move(hipMiddleLeft, 115); BOT.animate(speedms); BOT.move(kneeFrontRight, 100); //Drop 3a BOT.move(kneeRearRight, 100); BOT.move(kneeMiddleLeft, 100); BOT.animate(speedms); BOT.move(kneeFrontLeft, 130); //Lift 3b BOT.move(kneeRearLeft, 130); BOT.move(kneeMiddleRight, 130); BOT.animate(speedms); BOT.move(hipFrontLeft, 70); //turn 3b left BOT.move(hipRearLeft, 20); BOT.move(hipMiddleRight, 65); BOT.animate(speedms); BOT.move(kneeFrontLeft, 100); //Drop 3b + small ankle movement BOT.move(kneeRearLeft, 100); BOT.move(kneeMiddleRight, 100); BOT.animate(speedms); BOT.move(hipFrontRight, 45); //Swivel 3a&b back to center BOT.move(hipRearRight, 45); BOT.move(hipMiddleLeft, 90); BOT.move(hipFrontLeft, 45); //turn 3b right BOT.move(hipRearLeft, 45); BOT.move(hipMiddleRight, 90); BOT.animate(speedms); } } //******************************************************************************************************************** void leanright (int speedms) { BOT.move(kneeFrontRight, 50); BOT.move(kneeMiddleRight, 50); BOT.move(kneeRearRight, 50); BOT.move(ankleFrontRight, 50); BOT.move(ankleMiddleRight, 50); BOT.move(ankleRearRight, 50); // BOT.move(kneeFrontLeft, 150); BOT.move(kneeMiddleLeft, 150); BOT.move(kneeRearLeft, 150); BOT.move(ankleFrontLeft, 0); BOT.move(ankleMiddleLeft, 0); BOT.move(ankleRearLeft, 0); BOT.animate(speedms); // BOT.move(kneeFrontRight, 100); BOT.move(kneeMiddleRight, 100); BOT.move(kneeRearRight, 100); BOT.move(ankleFrontRight, 0); BOT.move(ankleMiddleRight, 0); BOT.move(ankleRearRight, 0); // BOT.move(kneeFrontLeft, 100); BOT.move(kneeMiddleLeft, 100); BOT.move(kneeRearLeft, 100); BOT.move(ankleFrontLeft, 0); BOT.move(ankleMiddleLeft, 0); BOT.move(ankleRearLeft, 0); BOT.animate(speedms); } //******************************************************************************************************************** void leanleft (int speedms) { BOT.move(kneeFrontLeft, 50); BOT.move(kneeMiddleLeft, 50); BOT.move(kneeRearLeft, 50); BOT.move(ankleFrontLeft, 50); BOT.move(ankleMiddleLeft, 50); BOT.move(ankleRearLeft, 50); // BOT.move(kneeFrontRight, 150); BOT.move(kneeMiddleRight, 150); BOT.move(kneeRearRight, 150); BOT.move(ankleFrontRight, 0); BOT.move(ankleMiddleRight, 0); BOT.move(ankleRearRight, 0); BOT.animate(speedms); // BOT.move(kneeFrontLeft, 100); BOT.move(kneeMiddleLeft, 100); BOT.move(kneeRearLeft, 100); BOT.move(ankleFrontLeft, 0); BOT.move(ankleMiddleLeft, 0); BOT.move(ankleRearLeft, 0); // BOT.move(kneeFrontRight, 100); BOT.move(kneeMiddleRight, 100); BOT.move(kneeRearRight, 100); BOT.move(ankleFrontRight, 0); BOT.move(ankleMiddleRight, 0); BOT.move(ankleRearRight, 0); BOT.animate(speedms); } //******************************************************************************************************************** void wavefrontright (int waves, int speedms){ BOT.move(kneeFrontRight, 150); BOT.move(ankleFrontRight, 75); BOT.move(hipFrontRight, 10); BOT.animate(speedms); for (int i = 0; i < waves; i++){ BOT.move(ankleFrontRight, 45); BOT.animate(speedms/2); BOT.move(ankleFrontRight, 90); BOT.animate(speedms/2); BOT.move(ankleFrontRight, 45); BOT.animate(speedms/2); BOT.move(ankleFrontRight, 90); BOT.animate(speedms/1.5); BOT.move(ankleFrontRight, 45); BOT.animate(speedms/1.5); } BOT.move(kneeFrontRight, 100); BOT.move(ankleFrontRight, 0); BOT.move(hipFrontRight, 45); BOT.animate(speedms); } //******************************************************************************************************************** void wavefrontleft (int waves, int speedms){ BOT.move(kneeFrontLeft, 150); BOT.move(ankleFrontLeft, 75); BOT.move(hipFrontLeft, 10); BOT.animate(speedms); for (int i = 0; i < waves; i++){ BOT.move(ankleFrontLeft, 45); BOT.animate(speedms/2); BOT.move(ankleFrontLeft, 90); BOT.animate(speedms/2); BOT.move(ankleFrontLeft, 45); BOT.animate(speedms/2); BOT.move(ankleFrontLeft, 90); BOT.animate(speedms/1.5); BOT.move(ankleFrontLeft, 45); BOT.animate(speedms/1.5); } BOT.move(kneeFrontLeft, 100); BOT.move(ankleFrontLeft, 0); BOT.move(hipFrontLeft, 45); BOT.animate(speedms); } //******************************************************************************************************************** void waverearleft (int waves, int speedms){ BOT.move(kneeRearLeft, 150); BOT.move(ankleRearLeft, 75); BOT.move(hipRearLeft, 10); BOT.animate(speedms); for (int i = 0; i < waves; i++){ BOT.move(ankleRearLeft, 45); BOT.animate(speedms/2); BOT.move(ankleRearLeft, 90); BOT.animate(speedms/2); BOT.move(ankleRearLeft, 45); BOT.animate(speedms/2); BOT.move(ankleRearLeft, 90); BOT.animate(speedms/1.5); BOT.move(ankleRearLeft, 45); BOT.animate(speedms/1.5); } BOT.move(kneeRearLeft, 100); BOT.move(ankleRearLeft, 0); BOT.move(hipRearLeft, 45); BOT.animate(speedms); } //******************************************************************************************************************** void waverearright (int waves, int speedms){ BOT.move(kneeRearRight, 150); BOT.move(ankleRearRight, 75); BOT.move(hipRearRight, 10); BOT.animate(speedms); for (int i = 0; i < waves; i++){ BOT.move(ankleRearRight, 45); BOT.animate(speedms/2); BOT.move(ankleRearRight, 90); BOT.animate(speedms/2); BOT.move(ankleRearRight, 45); BOT.animate(speedms/2); BOT.move(ankleRearRight, 90); BOT.animate(speedms/1.5); BOT.move(ankleRearRight, 45); BOT.animate(speedms/1.5); } BOT.move(kneeRearRight, 100); BOT.move(ankleRearRight, 0); BOT.move(hipRearRight, 45); BOT.animate(speedms); } //******************************************************************************************************************** void standup () { BOT.move(kneeFrontRight, 100); BOT.move(kneeFrontLeft, 100); BOT.move(kneeMiddleRight, 100); BOT.move(kneeMiddleLeft, 100); BOT.move(kneeRearRight, 100); BOT.move(kneeRearLeft, 100); BOT.animate(200); } //******************************************************************************************************************** void walkforward(int steps, int speedms) { BOT.move(kneeFrontRight, 130); //Lift 3a BOT.move(kneeRearRight, 130); BOT.move(kneeMiddleLeft, 130); BOT.animate(speedms); BOT.move(hipFrontRight, 20); //Swivel 3a forward BOT.move(hipRearRight, 70); BOT.move(hipMiddleLeft, 65); BOT.animate(speedms); for (int i = 0; i < steps; i++){ BOT.move(kneeFrontRight, 70); //Drop 3a + small ankle movement BOT.move(kneeRearRight, 70); BOT.move(kneeMiddleLeft, 70); BOT.move(ankleFrontRight, 20); BOT.move(ankleRearRight, 20); BOT.move(ankleMiddleLeft, 20); BOT.animate(speedms); BOT.move(hipFrontRight, 45); //Swivel 3a back to center BOT.move(hipRearRight, 45); BOT.move(hipMiddleLeft, 90); // BOT.move(kneeFrontLeft, 130); //Lift 3b BOT.move(kneeRearLeft, 130); BOT.move(kneeMiddleRight, 130); BOT.animate(speedms); BOT.move(kneeFrontRight, 100); //Normalize 3a BOT.move(kneeRearRight, 100); BOT.move(kneeMiddleLeft, 100); BOT.move(ankleFrontRight, 0); BOT.move(ankleRearRight, 0); BOT.move(ankleMiddleLeft, 0); // BOT.move(hipFrontLeft, 20); //Swivel 3b forward BOT.move(hipRearLeft, 70); BOT.move(hipMiddleRight, 65); BOT.animate(speedms); BOT.move(kneeFrontLeft, 70); //Drop 3b + small ankle movement BOT.move(kneeRearLeft, 70); BOT.move(kneeMiddleRight, 70); BOT.move(ankleFrontLeft, 20); BOT.move(ankleRearLeft, 20); BOT.move(ankleMiddleRight, 20); BOT.animate(speedms); BOT.move(hipFrontLeft, 45); //Swivel 3b back to center BOT.move(hipRearLeft, 45); BOT.move(hipMiddleRight, 90); // BOT.move(kneeFrontRight, 130); //Lift 3a BOT.move(kneeRearRight, 130); BOT.move(kneeMiddleLeft, 130); BOT.animate(speedms); BOT.move(kneeFrontLeft, 100); //Normalize 3b BOT.move(kneeRearLeft, 100); BOT.move(kneeMiddleRight, 100); BOT.move(ankleFrontLeft, 0); BOT.move(ankleRearLeft, 0); BOT.move(ankleMiddleRight, 0); // BOT.move(hipFrontRight, 20); //Swivel 3a forward BOT.move(hipRearRight, 70); BOT.move(hipMiddleLeft, 65); BOT.animate(speedms); } BOT.move(kneeFrontRight, 70); //Drop 3a + small ankle movement BOT.move(kneeRearRight, 70); BOT.move(kneeMiddleLeft, 70); BOT.move(ankleFrontRight, 20); BOT.move(ankleRearRight, 20); BOT.move(ankleMiddleLeft, 20); BOT.animate(speedms); BOT.move(hipFrontRight, 45); //Swivel 3a back to center BOT.move(hipRearRight, 45); BOT.move(hipMiddleLeft, 90); BOT.animate(speedms); BOT.move(kneeFrontRight, 100); //Normalize 3a BOT.move(kneeRearRight, 100); BOT.move(kneeMiddleLeft, 100); BOT.move(ankleFrontRight, 0); BOT.move(ankleRearRight, 0); BOT.move(ankleMiddleLeft, 0); BOT.animate(speedms); } //******************************************************************************************************************** void walkbackward(int steps, int speedms) { BOT.move(kneeFrontRight, 130); //Lift 3a BOT.move(kneeRearRight, 130); BOT.move(kneeMiddleLeft, 130); BOT.animate(speedms); BOT.move(hipFrontRight, 70); //Swivel 3a backward BOT.move(hipRearRight, 20); BOT.move(hipMiddleLeft, 115); BOT.animate(speedms); for (int i = 0; i < steps; i++){ BOT.move(kneeFrontRight, 70); //Drop 3a + small ankle movement BOT.move(kneeRearRight, 70); BOT.move(kneeMiddleLeft, 70); BOT.move(ankleFrontRight, 20); BOT.move(ankleRearRight, 20); BOT.move(ankleMiddleLeft, 20); BOT.animate(speedms); BOT.move(hipFrontRight, 45); //Swivel 3a back to center BOT.move(hipRearRight, 45); BOT.move(hipMiddleLeft, 90); // BOT.move(kneeFrontLeft, 130); //Lift 3b BOT.move(kneeRearLeft, 130); BOT.move(kneeMiddleRight, 130); BOT.animate(speedms); BOT.move(kneeFrontRight, 100); //Normalize 3a BOT.move(kneeRearRight, 100); BOT.move(kneeMiddleLeft, 100); BOT.move(ankleFrontRight, 0); BOT.move(ankleRearRight, 0); BOT.move(ankleMiddleLeft, 0); // BOT.move(hipFrontLeft, 70); //Swivel 3b backward BOT.move(hipRearLeft, 20); BOT.move(hipMiddleRight, 115); BOT.animate(speedms); BOT.move(kneeFrontLeft, 70); //Drop 3b + small ankle movement BOT.move(kneeRearLeft, 70); BOT.move(kneeMiddleRight, 70); BOT.move(ankleFrontLeft, 20); BOT.move(ankleRearLeft, 20); BOT.move(ankleMiddleRight, 20); BOT.animate(speedms); BOT.move(hipFrontLeft, 45); //Swivel 3b back to center BOT.move(hipRearLeft, 45); BOT.move(hipMiddleRight, 90); // BOT.move(kneeFrontRight, 130); //Lift 3a BOT.move(kneeRearRight, 130); BOT.move(kneeMiddleLeft, 130); BOT.animate(speedms); BOT.move(kneeFrontLeft, 100); //Normalize 3b BOT.move(kneeRearLeft, 100); BOT.move(kneeMiddleRight, 100); BOT.move(ankleFrontLeft, 0); BOT.move(ankleRearLeft, 0); BOT.move(ankleMiddleRight, 0); // BOT.move(hipFrontRight, 70); //Swivel 3a backward BOT.move(hipRearRight, 20); BOT.move(hipMiddleLeft, 115); BOT.animate(speedms); } BOT.move(kneeFrontRight, 70); //Drop 3a + small ankle movement BOT.move(kneeRearRight, 70); BOT.move(kneeMiddleLeft, 70); BOT.move(ankleFrontRight, 20); BOT.move(ankleRearRight, 20); BOT.move(ankleMiddleLeft, 20); BOT.animate(speedms); BOT.move(hipFrontRight, 45); //Swivel 3a back to center BOT.move(hipRearRight, 45); BOT.move(hipMiddleLeft, 90); BOT.animate(speedms); BOT.move(kneeFrontRight, 100); //Normalize 3a BOT.move(kneeRearRight, 100); BOT.move(kneeMiddleLeft, 100); BOT.move(ankleFrontRight, 0); BOT.move(ankleRearRight, 0); BOT.move(ankleMiddleLeft, 0); BOT.animate(speedms); } //******************************************************************************************************************** void leanbackward(int speedms) { BOT.move(kneeFrontRight, 50); BOT.move(kneeFrontLeft, 50); BOT.move(ankleFrontRight, 80); BOT.move(ankleFrontLeft, 80); // BOT.move(kneeRearRight, 135); BOT.move(kneeRearLeft, 135); BOT.move(ankleRearRight, 0); BOT.move(ankleRearLeft, 0); // BOT.move(kneeMiddleRight, 110); BOT.move(kneeMiddleLeft, 110); BOT.animate(speedms); BOT.move(kneeFrontRight, 100); BOT.move(kneeFrontLeft, 100); BOT.move(ankleFrontRight, 0); BOT.move(ankleFrontLeft, 0); // BOT.move(kneeRearRight, 100); BOT.move(kneeRearLeft, 100); BOT.move(ankleRearRight, 0); BOT.move(ankleRearLeft, 0); // BOT.move(kneeMiddleRight, 100); BOT.move(kneeMiddleLeft, 100); BOT.animate(speedms); } //******************************************************************************************************************** void leanforward(int speedms) { BOT.move(kneeRearRight, 50); BOT.move(kneeRearLeft, 50); BOT.move(ankleRearRight, 80); BOT.move(ankleRearLeft, 80); // BOT.move(kneeFrontRight, 135); BOT.move(kneeFrontLeft, 135); BOT.move(ankleFrontRight, 0); BOT.move(ankleFrontLeft, 0); // BOT.move(kneeMiddleRight, 110); BOT.move(kneeMiddleLeft, 110); BOT.animate(speedms); BOT.move(kneeFrontRight, 100); BOT.move(kneeFrontLeft, 100); BOT.move(ankleFrontRight, 0); BOT.move(ankleFrontLeft, 0); // BOT.move(kneeRearRight, 100); BOT.move(kneeRearLeft, 100); BOT.move(ankleRearRight, 0); BOT.move(ankleRearLeft, 0); // BOT.move(kneeMiddleRight, 100); BOT.move(kneeMiddleLeft, 100); BOT.animate(speedms); } |