-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Actions Run Blocking #422
Comments
Perhaps |
thank you for the reply. it helped. we rebuilt the code using your example. However, we cannot run more than one action in SequentialAction nor if we make a list after it. The code I pasted in has the original list in SA but remarked out and the list after it as an experiment. package org.firstinspires.ftc.teamcode.tuning; // RR-specific imports import com.acmerobotics.dashboard.config.Config; // Non-RR imports @config
//Arm Extend and Take methods???
} |
RR FTC Version
1.0
Observed Behavior
Robot will drive and raise arm but will not run other commands in Sequential Action. We don't know if its the sequence or commands
Tuning Files
package org.firstinspires.ftc.teamcode.tuning;
// RR-specific imports
import androidx.annotation.NonNull;
import com.acmerobotics.dashboard.config.Config;
import com.acmerobotics.dashboard.telemetry.TelemetryPacket;
import com.acmerobotics.roadrunner.Action;
import com.acmerobotics.roadrunner.Pose2d;
import com.acmerobotics.roadrunner.SequentialAction;
import com.acmerobotics.roadrunner.TrajectoryActionBuilder;
import com.acmerobotics.roadrunner.Vector2d;
import com.acmerobotics.roadrunner.ftc.Actions;
// Non-RR imports
import com.qualcomm.robotcore.eventloop.opmode.Autonomous;
import com.qualcomm.robotcore.eventloop.opmode.LinearOpMode;
import com.qualcomm.robotcore.hardware.CRServo;
import com.qualcomm.robotcore.hardware.DcMotor;
//import com.qualcomm.robotcore.hardware.Servo;
import org.firstinspires.ftc.teamcode.MecanumDrive;
@config
@autonomous(name = "AutoTest2", group = "Autonomous")
public class AutoTest2 extends LinearOpMode {
//Arm Extend and Take methods???
}
Robot Logs
No response
The text was updated successfully, but these errors were encountered: