mechanisms = new HHMechanism[numMechs];
controllers = new HHController[numMechs];
for (int i = 0; i < numMechs; i++) {
switches[i] = new HHToggleSwitch(autoButtonSim, switchSims[i]);
mechanisms[i] = new HHMechanism(
new ISolenoid[] { this.actuatorSims[i] }, safetyButton);
// safetyButton.addSafetyListener(mechanisms[i]);
controllers[i] = new HHController(mechanisms[i], switches[i],
waitTimes[i]);