Changes between Version 7 and Version 8 of ControlSystems/SoftwareTeam/Training/WPILib/CommandBasedProgramming
- Timestamp:
- Dec 17, 2019, 12:55:53 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ControlSystems/SoftwareTeam/Training/WPILib/CommandBasedProgramming
v7 v8 37 37 38 38 import edu.wpi.first.wpilibj.command.Subsystem; 39 import frc.robot.RobotMap; 39 40 import edu.wpi.first.wpilibj.Servo; 40 41 … … 45 46 46 47 private ServoSubsystem() { 47 servo = new Servo( 0);48 servo = new Servo(RobotMap.SERVO_PORT); 48 49 } 49 50