We are trying to program one of our motors to move one direction when we press a button and the other direction off of a different button. We’re using a Jaguar motor controller right now.
When going one direction operation is normal but the reverse direction stutters. If we reverse the code we get the same results but with opposite directions.
If we use the joystick axis to control this movement both directions are working. We checked that the buttons are at 1 and -1 when pressed.
Things we’ve tried so far:
Different motor
Different motor controller
Changed which buttons were assigned in the code
Changed which directions were assigned in the code
I tried searching but was having trouble with using the right keywords. Has anyone else had this problem? Is there an easier way to accomplish the same task?
Doesn’t sound like a hardware problem. When this happened to us on our first lift test, we dug through the code and found conflicting instructions being sent to the motor controller when various buttons were pushed. Can you publish some of your code?
This was my first thought as well. It sounds like part of your code is sending 0 and then a different part is sending 1. Is the stop command from the first button always executing when it’s not pressed? That would be my blind guess.
Would you be able to post your riolog? if you’re working in java or c. Also posting your code to github would be helpful, we’ve had a similar problem. If it’s on github, it makes for other teams to help debug a little easier.