Skip to content

Flash3388/Offseason-2024

Repository files navigation

Offseason 2024

Desired Goals

Quick and Accurate Control Loops

  • For all control loops (mostly Arm and Shooter).
  • Quick and accurate set-point settling.
  • Based on SparkMAX-integrated PIDF for all loops (not necessary for the Arm, but might be possible).
  • Possible usage of SmartMotion (check this option for the arm).

Proper System Limits

  • Use software or hardware limits for Arm and Climb systems.
  • Insure they prevent damaging the robot. Be careful!!!

Capable Auto-Firing

  • Usage of Interpolation (ask for help), accurate Arm and Shooter control and target acquisition.
  • Be capable of looking-on and firing notes at targets from different orientations and ranges (using vision).
  • As quick a process as possible (as soon as a note is collected, be ready to shoot at an instant). Think how you will do it.
    • several systems must reach set points to fire
    • during the season, there was an attempt to use vision to align to shooter - it produced bad offsets and the set point wasn't reached
    • during the season, on occaison the shooter and arm didn't reach the set points, reason unknown
    • need to spend a lot of time analyzing and improving the system operations to acheive this
  • Control all relevant systems automatically, no need for additional operator input.
  • Odometery or Vision based targeting
  • Possibility for firing without human operator approval (?)
  • with the press of a button, do everything needed for shooting (or shoot automatically when close enough)
  • try keeping robot aligned on the target when ready for shoot
    • using it as a like-field relative, just not oriented by field but via target
    • old implementation controlled the rotation component to keep alignment
  • move to amp position automatically

Accurate Field Odometery

  • Usage of Pigeon and encoders for basic Odometery. Show the robot on the field live. Make sure the robot knows it exact location and how to calculate and consider its movement.
  • Integration of Vision for error correction and initial position configuration (using vision).
  • Verify (using tape measure and such on a simulated field) that calculations of positioning and offsets is accurate

Auto-Collection (using vision - probably)

  • Detect and reach notes on the floor.
  • Collect them once reached.
  • Likely vision-based note locating.

PathPlanner

  • Usage of PathPlanner to plan and execute complex paths for autonomous mode.
  • Integrated with event markers.
  • Quick, accurate and smooth motion.
  • Possibility of on-the-fly paths in teleop.

Power Consumption

  • Make sure systems don't consume to much power. You can do it by limit the amount of current or voltage they consume. You can consult with the mentors about how much to limit each system.
  • Make sure we can fully run the robot and its systems for the duration of a game on a battery (2.5 minutes).
  • When shooting (with shooter and arm) - analyze power consumption: could it cause problems? are they consuming too much power

Auto-Climb

  • try to move the robot to the chain automatically and position it ready to climb. Use odometery
  • maybe add a camera to allow driver to orient to the chain

Automatic Operations

  • Use as many as possible commands groups. Reduce the use of Xbox’s buttons to a minimum. For example, one button to aim the robot orientation to the target, raise the Arm to the right angle and shoot – all in one button.
  • Think how you can make the robot more automatic. It can help you earn prizes and help the driver while playing.
  • try to reach a point where there is only one driver, no need for another

For Competition

  • Prepare checklist for pre and post game to check robot as operational
  • Perhaps prepare a set of automatic tests? (how?)
  • Check bandwidth problems with FMS and limelight
  • Design Shuffleboard view

Notes on System/Operations

Drive

  • use field relative for most of the match
    • orient depending on the alliance
  • pose estimator mixing odometery and vision
  • for rotation: provide more power then x-y drive to be able to actually rotate
  • swerve has a weird tendency to rotate a bit off-axis, can use active PID solution to compensate

Arm

  • The arm is a difficult system, really heavy and big
  • properly-tuner PID could help stabilize it, but it requires a lot of works from the motors
  • both motors must function together to keep it operational
  • using Feed-Forward would be essential to keeping it steady
  • using SparkMax integrated PIDF could help
  • slow arm speed down as it reaches its limits to prevent it from causing damage. Perhaps introduce software limits with a buffer zone from the hardware limits
  • in testing: make sure arm is steady enough during motion
  • calibrate zero angle for when using through-bore
  • use through-bore via SparkMAX
  • consider situations where the absolute encoder disconnects: how to recognize and handle?

Shooter

  • use Feed-Forward for tuning
  • use integrate PIDF for SparkMax
  • present min and max speeds for shooting
    • at low speeds, the note loses velocity quickly and tumbles down
  • shooting to amp requires close proximity, determine specfic speed
  • shooting to speaker can use variable speeds

Intake

  • operate motors in break mode to keep note in place
  • use both proximity sensors to recognize note
  • find right output for quick collection and shooting
  • investigate problems with proximity sensors disconnecting
  • build team: how to make sure that sensors stay in place
  • difficult to collect manually:
    • field relative control isn't good for this
    • hard to orient to note
    • difficult to catch with intake

Climb

  • don't operate if the arm isn't raised or else the hook will hit electronics (add a software limit)
  • at the start of the match, when arm is raised enough, fix climb back to its open position

Auto-Firing

  • Consider auto-firing interpolation by arm angle or by shooter speed (or both)
  • Use proper interpolation methods (e.g. Langrage)

Part 1

Intake (Stav)

Implement the Subsystem

  • Include definitions for the motor controller and proximity sensors switches.
  • Create methods for basic PercentVBus rotation of the motor, as well as a method for accessing the proximity sensors switches state.
  • Add dashboard display of the proximity sensors switches state.
  • Create a command to rotate the intake motor based on the XboxController.

Guidelines:

Subsystem Creation
  • Define all motor controllers and sensors used in the system.
  • Construct these components in the constructor.
  • Remember to configure the controller properly.
    • At the very least, reset to factory default.
  • You will need to have the following set of methods:
    • A way to rotate the motor based on PercentVBus.
      • You should have constant speeds for in and out (in and out doesn't have to be the same).
    • A way to stop the motor rotation.
    • A way to access proximity sensors switches' information.
  • Remember to add print of sensors information to the dashboard.
Create Command
  • You'll need a command to run your system with an Xbox controller.
  • Create a command (or more) and attach them to buttons. At the very least, one button needs to pull note in and one out.
  • Configure it so that holding the buttons is required. This eliminates the need for isFinished for the moment.
  • Don't use the proximity sensors switches in isFinished for now.
Testing
  • Make sure the system moves as expected in both speed and direction.
  • Check different speeds for note in and note out. Find optimal speeds and note them in your code.
  • Try inserting the note from different positions and directions to make sure the note is collected well.
  • Test the proximity sensors switches to make sure it works (use Shuffleboard to view its state).
  • Push in a note and see when the proximity sensors switches detects the note.
  • Pull the note out and see when the proximity sensors switches no longer detect the note.

Requirements:

Finished Subsystem Code
  • Rotate in and out capability with PercentVBus and stop.
    • In and out done at a constant speed.
    • Speed should be determined and tested (not arbitrary).
  • Methods to access sensor information.
    • Proximity sensors switches.
  • Dashboard prints of sensor information.
  • Accurate sensor information.
Command
  • A command (or more) to rotate the intake in and out.
    • The commands should not use the proximity sensors switches for isFinished in this phase.
Robot Code
  • Code in the robot class that creates the system and runs the command.
    • Attach commands to buttons such that:
      • Holding RB pulls note in.
      • Holding LB pushes note out.

Arm (Niv)

Implement the Subsystem

  • Include definitions for the motor controller and limit switch.
  • Create methods for basic PercentVBus rotation of the motor, as well as a method for accessing the limit switch state.
  • Add dashboard display of the limit switch state.
  • Create a command to raise and lower the Arm based on the XboxController.

Guidelines:

Subsystem Creation
  • Define all motor controllers (Two Spark maxs) and sensors (Two hardware limit switches and one Through Bore Encoder) used in the system.
  • Construct these components in the constructor.
  • Remember to configure the controller properly.
    • At the very least, reset to factory default.
    • Then, configure the motor’s controllers to be on break mode and with current limit of 60 amp.
  • You will need to have the following set of methods:
    • A way to rotate the motor based on PercentVBus.
      • You should have constant speeds for raising and lowering the arm. They can (and even should) be different.
    • A way to stop the motors rotation.
    • A way to access limit switch information.
    • A way to access the angle of the system, using the Through Bore Encoder.
  • Remember to add print of sensors information to the dashboard.
Create Command
  • You'll need a command to run your system with an Xbox controller.
  • Create a command (or more) and attach them to buttons. At the very least, one button needs to raise the arm, and one should lower it.
  • Configure it so that holding the buttons is required. This eliminates the need for isFinished for the moment.
  • Don't use the limit switch in isFinished for now.

Testing

  • Make sure the system moves as expected in both speeds and directions.
  • Check different speeds for razing and lowering the arm. Find optimal speeds and note them in your code.
  • Test the limit switch to make sure it works (use Shuffleboard to view its state).

Requirements:

Finished Subsystem Code
  • Rotate in and out capability with PercentVBus and stop.
    • Up and down done at a constant speed.
    • Speed should be determined and tested (not arbitrary).
  • Methods to access sensor information.
    • Limit switches.
    • Angle using the Through Bore Encoder. • Dashboard prints of sensor information. • Accurate sensors information.
Command

• A command (or more) to move the arm up and down. - The commands should not use the limit switch for isFinished in this phase.

Robot Code
  • Code in the robot class that creates the system and runs the command.
    • Attach commands to buttons such that:
      • Holding Dpad.Up raise the arm.
      • Holding Dpad.Down lower the arm.

Shooter (Talya)

Implement the Subsystem

  • Define both motors for shooter and encoder.
  • Define your motor's built in PIDController
  • Configure the motors and PID.
    • Factory reset both motors.
    • Set the output limit to 1 and -1.
    • Reset the PID.

Guidelines:

Subsystem Creation
  • Create basic methods such as:
    • Rotating the motors
  • Create the shooter, create relevant print and method for the shooter.
    • Create a method that returns the velocity of the motor.
    • Create a method that returns if the velocity got to the required RPM.
Create Command
  • Create a command that rotates the motor to a selected velocity.
    • It needs to be ran on the click of a button on a Xbox Controller.
After Basic Creation
  • Look for methods of rotating the wheel since it's a flywheel.
    • Fly wheel means it just rotates freely it just needs to get to it's speed.
    • Can you use FeedForward alone without PID?
  • Change the command you created to use PID or the method you decided to go with.

Testing

  • Using the Xbox Controller check if the wheel spins to the wanted velocity.

Requirements:

Finished Subsystem Code
  • Able to get the shooter to get to wanted velocity in a quick time.
  • Tested for best methods for getting the motor to it's wanted velocity fast.
Robot Code
  • Add the commands and their corresponding buttons to use them:
    • Click X to run get to velocity command.

Swerve (Shalev)

Implement the Subsystem

There are some methods and abilities the swerve must have and some problems to fix.

Guidelines:

Subsystem Creation
  • Create the swerve and the Module classes. Have relevant print for each system (velocities, position, angels etc).

  • Swerve Module:

    • Each wheel has two motors- for driving and rotating use.
    • The position of the wheel (the angle in which it is) is determined by the absolute encoder. You need to use it to set the “zero angle” of the wheels.
  • Swerve:

    • This system must have a field relative option, to ease the driving. (The use of that already exists).
    • The swerve has a deviation while moving so we fixed it using PID for the robot’s angle. You can see the implementation of this in our code. Find a better way or recalibrate the PID’s constats to the movement will be better.
Create Command
  • You'll need a command to run your system with an Xbox controller.
  • Make the driving with the Xbox a default command.
  • The driving direction should be based on the alliance in which you’re part of. Field relative determines what the Up in the joystick is, and what is down. In each match, you should base your forward direction by your alliance colour. For example, if you’re the blue alliance and you need to give positive speed in order to move forward, you need to save that information and use it every time you use the joystick. That way, when the joystick says the speed is 0.5, it means you want to go backwards (it is negative to what you intend it to be), and therefore, you need to multiply the speed by (-1) for the robot to move backwards.

Testing

  • Try to drive in several directions and speeds. Make sure that the swerve is fast, drive strait when needed, and can spin easily while driving.
  • You can place cones and try drive between them. See how smooth is the driving.

Requirements:

Finished Subsystem Code
  • Two ways to drive – field’s oriented and robot’s oriented.
  • Pose estimator / Odometry which will be updated constantly.
  • Better PID’s values for all motor controllers and PID controllers related to those systems.
Robot Code
  • Code in the robot class that creates the system and runs the command as default command.

Climb (Danielle)

Implement the Subsystem

  • Include definitions for the motor controller and limit switches.
  • Create methods for basic PercentVBus rotation of the motor, as well as a method for accessing the limit switches state.
  • Add dashboard display of the limit switches state.
  • Create a command to rotate the intake motor based on the XboxController.

Guidelines:

Subsystem Creation
  • Define all motor controllers and sensors used in the system.
  • Construct these components in the constructor.
  • Remember to configure the controller properly.
    • At the very least, reset to factory default.
  • You will need to have the following set of methods:
    • A way to rotate the motor based on PercentVBus.
      • You should have constant speeds for up and down (up and down doesn't have to be the same).
    • A way to stop the motor rotation.
    • A way to access limit switches’ information.
  • Remember to add print of sensors information to the dashboard.
Create Command
  • You'll need a command to run your system with an Xbox controller.
  • Create a command (or more) and attach them to buttons. At the very least, one button needs to raise the system up and one to lower the system down.
  • Configure it so that holding the buttons is required. This eliminates the need for isFinished for the moment.
  • Don't use the limit switches in isFinished for now.
Testing
  • Make sure the system moves as expected in both speed and direction and stops when reaching the limit switches.
  • Check different speeds for moving up and down. Find optimal speeds and note them in your code.
  • Test the limit switches to make sure it works (use Shuffleboard to view its state).
  • Move the system until it reaches one of the limit switches. See that in this state it can move in the opposite direction. Do this check for both limit switches and directions.

Requirements:

Finished Subsystem Code
  • Rotate in and out capability with PercentVBus and stop.
    • Up and down done at a constant speed.
    • Speed should be determined and tested (not arbitrary).
  • Methods to access sensor information.
    • limit switches.
  • Dashboard prints of sensor information.
  • Accurate sensor information.
Command
  • A command (or more) to rotate the climb up and down.
    • The commands should not use the limit switches for isFinished in this phase.
Robot Code
  • Code in the robot class that creates the system and runs the command.
    • Attach commands to buttons such that:
      • Holding A move climb up.
      • Holding B move climb down.

Part 1.5

We have several things to do to update, test and advance new features

  • Intake

    • Try to align the sensors with tape to keep them in place temporarily
    • Wait for build team to construct strong placements for them
    • Go through code and look for problems
  • Arm

    • Test Through-Bore interfacing via SparkMax
      • Configure it to our wanted angle parameters
    • Introduce Software limits via Through-bore
    • Implement PID control for Arm
      • Idealy, use Spark PIDF with Through-Bore connected to it
      • See how to integrate smarter Feed-Forward
      • Consider Smart Motion
  • Climb

    • Go through code and look for problems
    • Check about motion directions and limit switches, as it was reported that they were inverted
      • make sure limit switches stop motions actually
  • Shooter

    • Look into new sensor to detect note passing through
      • Find a sensor, solder it, place it on shooter and test it
    • Go through code and look for problems
    • Make sure shooter can reach any RPM quickly, take a look at graphes and such
  • Swerve

    • Check pigeon functionality
    • Check field odometery
    • Check/implement field oriented drive
    • Look into stabilizing rotation with PID
  • Vision

    • Noam and Yahav will train
    • Learn about how to connect and configure limelight settings
    • Produce results in steps
      • AprilTag Detection
        • configure to detect AprilTag
        • explore possible settings
        • write code to read AprilTag information
      • Robot Pose extrapolation
        • Configure Limelight to provide Robot Pose
        • Read Robot pose from limelight and update odometery

Part 2

We'll be following several work paths in different functionalities on the robot.

Swerve and PathPlanner

  • Assignee: Shalev
  • Escort: Tom/Maayan

Work to improve the functionality of the Swerve system and include PathPlanner Support.

Odometery

Fix Odometery tracking.

Latest tests show confused detection in forward/backward motion. Forward motion moves the pose of the robot backwards and so. Likely caused by output from the drive encoders about direction or motion or by steer encoders. Investigate and fix.

Stabilization

The swerve has a tendency to drive to the side during y/x axes motion. Likely caused by swerve configuration and robot chassis weight distribution. fix.

Field Oriented-Drive

Using odometery and current alliance, implement a field-oriented drive for the swerve. This drive mode should be the default during the competition but may be replaced with a press of a button to normal drive when wanted.

Pathplanner

Add support for pathplanner use. Throughly test paths with different complexity.

Arm

  • Assignee: Niv
  • Escort: Tom/Maayan

PIDF Control

Add support for PIDF control of the Arm. Make sure it allows positioning the Arm at different angles, as well as keeping it stabilized and stationary when requested.

The Arm has a Through-Bore encoder connected to one of the SparkMax controllers which control a motor of the Arm (motor controller ID 16) via the absolute encoder port. This allows interfacing with the encoder in SparkMax algorithms. See the following example to access the sensor in code:

AbsoluteEncoder encoder = motor.getAbsoluteEncoder(SparkAbsoluteEncoder.Type.kDutyCycle);
encoder.setZeroOffset(OFFSET_TO_ZERO); // configure the zero at an offset from the actual zero
encoder.setPositionConversionFactor(360); // will convert all position values (even inside the SparkMax) to work with degrees

// you will need to configure the PIDF to use this sensor. see https://codedocs.revrobotics.com/java/com/revrobotics/sparkpidcontroller#setFeedbackDevice(com.revrobotics.MotorFeedbackSensor)

This encoder will serve as the basis for arm control algorithm.

Implement control code for the Arm based on the PIDF position loop integrated in the SparkMax. Recall there are two motors which are supposed to work in unison, consider how to handle that.

There are several approaches to Arm control, and the system itself is quite difficult. Consider your options and try several approaches (all should be based on PIDF). Find the best one and use it. To keep the Arm stable, consider the use of FeedForward (either integrated or external). Consider using Smart motion as well, it might provide a good solution. Which ever option you try, tuning is key for it to function.

Progress Update: 22.9

Worked on testing Spark PIDF and implementing changes to subsystem and command for PIDF control.

Since the Through-Bore is connected to SparkMax ID 16, this was made the "master" controller with SparkMax ID 15 being the follower. Subsystem now configures and exports PIDF control for commands, with a single default command used to continously control the arm.

Initial PIDF testing lead to a base calibration of P=0.03, I=0, D=0, F=0. Intrestingly, it works fine for reaching and holding at a position (with 2-degrees error margin), if a bit too violent. This is not a finalized tuning, but allows us to work with the arm for the time being. several things are of note:

  • the arm is held in place by the P component because it is not strong enough to reach the wanted position, and stalls around 2 degrees from the target. Meaning that the arm is in place and is incapable of moving more. The arm will always be closer to the floor than wanted because of gravity.
  • When moving downwards, gravity accelerates the arm further and causes a violent motion. Dampaning this is required. Adding D or a counter-acting FF will do the trick.
  • To get the arm closer to the setpoint, adding I or FF will be necessary to keep it in place, since P will be neglegible.

Further tuning is wanted, but can wait for a bit in order to progress with integrating the arm with other systems. The arm is operated via a default command in a pattern similar to the one used in the 2024 competition. This design is fine.

Several problems were identified:

  • The ID 16 motor carries a higher load to ID 15 motor. This is a mechanics problem, caused by the chains connected to the motors. Build team was notified and will work on this.
  • Both motors overheat after a few minutes of load, far faster than we would like. Internal motor cleanup was suggested by build team and will be done. Other possible improvements include
    • keeping the arm at an angle of around 60 will be easier due to less gravitational effect
    • perhaps a more capable control scheme will help
  • System hardware limit switches are wired to ID 15 motor and do not affect ID 16 motor as it is the master. Build team was notified and will connect switches to motor ID 16.

General checklist of changes:

  • Decreased current limit to 60. This is enough to lift the arm, and its best to keep the limit as low as possible
  • Changed Idle mode to COAST from BRAKE. BRAKE mode prevents safe manipulation of arm during testing, and is possible damaging to the motor when manually moving the arm. Normal arm operations may not require this feature at all, if PID is relied upon.
  • PIDF is configured in Subsystem
  • Subsystem uses the Absolute encoder for position measurement
  • Subsystem uses the Relative encoder for velocity measurement
  • Added command to operate arm with PID as a default command which can switch between set points.
  • Added basic tuning values

Todo wedensday:

  • Delete old arm commands as they are not wanted anymore.
  • Add soft limits on both motors. This is a basic replacement to the hardware limit switches and uses the NEO encoder to define forward/reverse limits to the SparkMaxs. Test this in REV Hardware Client and then configure in code.
    • Due to the need for absolute encoder calibration for the relative encoders, in code, configure the relative encoders according to the absolute encoder positioning and configure soft limits according to that.
      • no true in the end, uses the absolute encoder (for some reason)
    • These limits will stay even when hard limits are returned as backups
    • Read
  • Add stop condition to arm command. We don't want to keep the arm in the air for too long. Use a timer which when elapsed, changes the command to a stop mode which stops the motor.
    • You may also integrate motor temperature into this instead of (or in additon to) timer. This will allow to stop when motors reach a critical temperature as a safety measure.
    • You can either drop the arm completely (by stopping the motor) or move the arm to the floor and then stop.
  • Integrate Arm with other systems. We need to start integrating the arm with the operations of the other systems. This does not mean we are finished with the arm, but we are on a clock and the faster we integrate the faster we will be able to identify problems
    • after arm-only testing, do a quick go over on the arm code to see if there are things that can be improved.
    • when everything is fine, open a PR, approve it and merge into master. Move to master, pull and open a new branch.
    • start integrating the arm with the other systems by using the arm as part of the commands to collect and shoot notes. Since auto-shooting is not a thing yet, use a constant angle.

Todo later:

  • Better tuning for the arm, to improve power consumption, blunt agressive movement
  • Drop to the floor gently when timer expires or when moving to the floor
Progress Update: 30.9

Took an opportunity to test the arm against several approaches and tunings.

  • The position control in SparkMax is pretty good on its own.
    • It's a bit violent going up and stopping suddently when reaching the setpoint
    • It's very violent going down, as gravity increases the power suggnificantly
    • Normally the arm raises it can reach up to around 1200 RPM speed
    • When going down it can reach around 1500-2000 RPM
    • This speed causes the arm to slam down with force
    • This violent motion is damaging to the arm
  • Attempted to blunt this speed with several approaches
    • adding some kd didn't have much affect, and too much kd causes oscillations due to sensor noise
    • adding an arbitrary FF has the affect of increasing power for raising and decreases power for lowering
      • however, we cannot raise this value to high as it will prevent capable raising
      • up to a limit, it did had an affect, but not enough
    • Using an FF based on a $cos(angle)$ function
      • Unlike arbitrary FF, this has a changing FF value, which causes a nicer motion
      • It also add the affect of providing better percision, because it provided more power to the motor
      • But because it is not constant, then it doesn't alter the output too much such that it misses
      • Additionally, because of a lower P need and limited FF value, the current drawn by the motor during stall is lower on average. This can be attributed to what the actual output voltage is.
    • Using SmartMotion is problematic..... This was known in advance though
      • SmartMotion combines motion profiling with the PIDF loop for position control
      • HOWEVER, it was weirdly implemented via a velocity loop instead
      • This makes tuning for an arm difficult, and very dangerous for our specific arm
      • It showed good properties, since the velocity was very controlled and allowed us to limit it
      • But tuning this is difficult

The conclusion here is to combine the best of what we have:

  • use the Position control with SparkMax at the base
  • Add cosine based FF
  • Add motion profiling for velocity control

Vision

  • Assignee: Yahav
  • Escort: Noam

We'll be relying on vision to provide at least similar capabilities as used during the season. That is, identification of April Tags and robot pose estimation. We will use this approach again, with the intent to improve this so that it functions relaibly.

The robot should properly detect april tags even at some distance and rely updates to the odometery. It is expected that the odometery will be accurate.

Noam will teach Yahav how to use the Limelight and implement this. We may use vision for other things later.

Auto Shoot - Part 1

  • Assignee: Stav
  • Escort: Tom

Fully automatic shooting depends on the full functionality of vision and arm. However, we can begin by implementing rudumentry parts of this system into the shooter.

The shooter system component in this is to use evaluated distance to target and calibrate to a specific shooter speed accordingly. The difficult part here is to create a connection between the shooter speed and distance to target, which is some unknown function. We will be using interpolation to solve this. Tom will research the math necessary for this and instruct on how to implement.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages