I witnessed something very scary last night- I was demonstrating to a student how to trigger the actuator and the cylinder fired. I then checked the disable switch, and it was set correctly. I enabled, disabled, and it STILL fired.
I’m very confused- here’s the relevant code section:
//ucGripperPosition = 0 is NON actuated, meaning OPEN
//Confirm double switch state to toggle the gripper position
if ( (1 == p2_sw_trig) && (1 == p2_sw_top ) && (1 == ucGripperLatch ) ) {
if ( 1 == ucGripperPosition) { //Gripper is actuated, so open it
ucGripperPosition = 0;
ucGripperLatch = 0;
} else {
ucGripperPosition = 1;
ucGripperLatch = 0;
} //endifelse gripper position
} else if ( (0 == p2_sw_trig) && (0 == p2_sw_top ) ) {
ucGripperLatch = 1;
//printf(" De-Latching Switch
");
} //endif - ignore the current state of the sw_trigs because they both
//werent enabled at the same time
GRIPPERTOGGLE = ucGripperPosition; //Set the position of the gripper
As you can see we require both buttons to be depressed to fire the cylinder, and both buttons to be released before you can fire the cylinder again. It’s an ‘oopsy’ prevention that hasn’t dropped a tube yet…
Suggestions? This code runs inline with the rest of our code.
My response is under the assumption that the piston fired when enabled and then retracted when you disabled. If all movement took place while disabled, then you have a far more serious problem.
I don’t know your level of expertise so I will explain this completely so that others may learn from it.
When the robot is disabled, all OI inputs get to the RC and are processed by your code. However, in that situation, the RC sets all of the outputs to neutral. What it doesn’t do is clear any internal variables.
So with your code, you initialize position to closed. With the robot disabled, you press both trigger and top. Your internal variables are now set to the open position, but nothing moves because you’re disabled. Now if you enable, you will open because your internal state variable (currently open) is getting mapped to an output.
The way to fix this is to clear your state when you’re disabled. Something like this should be what you want.
All movement of the robot is disabled and the victors are flashing their 0.5hz flicker (neutral blink).
The OI shows a solid orange ‘disabled’ LED, and the robot’s controller is flickering "disabled’.
I can move the joysticks around and no movement occurs. If I hit the two buttons to fire the claw, the claw actuates. I can continuously open and close the claw while still not being able to drive the robot.
I’ll review the code some more… I think the compressor runs automatically too but I’m not certain.
Can you show us how you have this wired? What inputs and outputs are you using for the one that is still moving when the robot is disabled?
Is it one of the PWM / Relay ports? If not, that’s the first part of your problem. I’m pretty sure everything that moves has to be on one of those ports, and not an I/O line.
You do have the pump and claw relays plugged into a relay output (and not a digital I/O), right? Sorry, I know it probably sounds like a stupid question, but if so it could explain why things work when disabled. If it is a relay output (and the OI disabled light is solid orange) then that’s a scary situation indeed.
I agree with DaveF’s suggestion to check the wiring.
The OI shows a solid orange ‘disabled’ LED, and the robot’s controller is flickering "disabled’.
This really concerns me. Normally, solid at the OI means disabled, yet the flickering at the RC means autonomous. I find it really hard to believe that code that you’ve written was able to put the robot in this state since the master code is what handles the enable/disable state of the robot.
Is this reproducible? Were you using a radio or were you tethered when this happened?
That would be your problem. As others have already pointed out, Spikes need to be on the relay outputs only. Digital I/Os are meant for inputs like sensors or benign outputs like LEDs.
When disabled, all OI inputs are transmitted to the RC and are processed. Your robot will still try to drive the motors (but it can’t because output is disabled).
Fire up the Dashboard, disable your robot, and watch the PWM values as you try to drive (with it disabled). They should still change.
The compressor documentation states to avoid running it in reverse. I would hope it wouldn’t blow up in the course of a few seconds, but where pneumatics are concerned better safe than sorry