Advertisement
Guest User

Dri

a guest
Jan 18th, 2020
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.79 KB | None | 0 0
  1. package org.firstinspires.ftc.teamcode.Mecanum.Config;
  2.  
  3.  
  4.  
  5. /**
  6.  * Class to hold the manipulator controls
  7.  */
  8. public class ManipulatorControls {
  9.  
  10.     public DriverConfig.DriverName name = DriverConfig.DriverName.JONAH;
  11.  
  12.     public DriverConfig.Button lift_up = DriverConfig.Button.DPAD_UP;
  13.     public DriverConfig.Button lift_down = DriverConfig.Button.DPAD_DOWN;
  14.     public DriverConfig.Button claw_open = DriverConfig.Button.LEFT_BUMPER;
  15.     public DriverConfig.Button claw_closed = DriverConfig.Button.RIGHT_BUMPER;
  16.     public DriverConfig.Button arm_down = DriverConfig.Button.X;
  17.     public DriverConfig.Button arm_up = DriverConfig.Button.Y;
  18.     /**
  19.      * Make sure to reverse this!
  20.      */
  21.     public DriverConfig.Trigger foundation_movers = DriverConfig.Trigger.RIGHT_STICK_Y;
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement