Skip to content

Commit

Permalink
Change the Solenoid locations
Browse files Browse the repository at this point in the history
  • Loading branch information
TechplexEngineer committed Aug 29, 2014
1 parent 1095a48 commit 25b8330
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/org/frc5122/RobotMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public static void init() {
armRoller = new Victor(6);
LiveWindow.addActuator("Arm", "Roller", (Victor) armRoller);

armDeploy = new Solenoid(1);
armDeploy = new Solenoid(0);
LiveWindow.addActuator("Arm", "Deploy", armDeploy);


Expand All @@ -83,7 +83,7 @@ public static void init() {
iRIRCode = new DigitalInput(6);
LiveWindow.addSensor("IR", "IR Code", iRIRCode);

throwupPopBall = new DoubleSolenoid(5, 6);
throwupPopBall = new DoubleSolenoid(1, 2);


// END AUTOGENERATED CODE, SOURCE=ROBOTBUILDER ID=CONSTRUCTORS
Expand Down

0 comments on commit 25b8330

Please sign in to comment.