Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Robot2019/src/main/java/frc/robot/RobotMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class RobotMap {
cargoRoller = new VictorSP(0);

// Initialize solenoid on hatch panel mech
hatchPistons = new DoubleSolenoid(0, 1);
hatchPistons = new DoubleSolenoid(7, 0); // 7 is A/Forward, 0 is B/Reverse

leftEnc = new Encoder(new DigitalInput(0), new DigitalInput(1));
rightEnc = new Encoder(new DigitalInput(2), new DigitalInput(3));
Expand Down