123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- void executePushAnimationSequence(int seqID) {
- if (seqID < 3) {
-
- setAnimationCode('a');
- delay(4000);
- pushSwitchDelayed(1000, 1000);
- if (seqID == 2){
-
- return;
- }
- } else if (seqID < 4) {
-
- setAnimationCode('a');
- delay(4000);
- pushWithHesitation();
- return;
- } else if (seqID < 5) {
-
- setAnimationCode('a');
- delay(4000);
- servoCoverPusher.write(90);
- delay(1000);
- servoSwitchPusher.write(90 + SERVO_ALIGNMENT_OFFSET);
- delay(2000);
- backward(100);
- delay(1000);
- servoSwitchPusher.write(130 + SERVO_ALIGNMENT_OFFSET);
- delay(1000);
- servoCoverPusher.write(0);
- servoSwitchPusher.write(0);
- return;
- } else if (seqID < 8) {
-
- setAnimationCode('b');
- delay(2000);
- pushSwitchDelayed(300, 300);
- delay(3000);
-
- return;
- } else if (seqID < 10) {
-
- setAnimationCode('b');
- delay(500);
- pushSwitchNow();
- delay(1000);
-
- return;
- } else if (seqID < 11) {
-
- setAnimationCode('f');
- delay(500);
- rotateClockwise(50);
- rotateAntiClockwise(100);
- rotateClockwise(100);
- rotateAntiClockwise(50);
- pushSwitchDelayed(1000, 300);
- delay(2000);
- setAnimationCode('g');
- return;
- } else {
-
- setAnimationCode('a');
- delay(4000);
- pushSwitchDelayed(1000, 1000);
- }
- clearFrame();
- delay(3000);
- }
- void runDebugSequence() {
-
-
-
- forward(50);
- delay(3000);
- backward(50);
- delay(3000);
- rotateAntiClockwise(100);
- delay(1000);
-
- rotateClockwise(100);
- delay(3000);
-
-
-
- servoCoverPusher.write(90 + SERVO_ALIGNMENT_OFFSET);
- delay(1000);
- servoSwitchPusher.write(130 + SERVO_ALIGNMENT_OFFSET);
- delay(1000);
- servoCoverPusher.write(0);
- servoSwitchPusher.write(0);
- delay(3000);
-
- bool switchPushed = getSwitchState();
- if (switchPushed) {
- Serial.println("Switch pushed");
- } else {
- Serial.println("Switch idle");
- }
- }
|