![]() |
Mecanum Drive Not Working
So for some reason we can't get our mecanum drive working. Our code (in C++) looks like this:
Code:
[This just calculates the motor speeds which will be set later.Code:
//Invert motors in code instead of electronicallyAlso, if we put default code on the robot it does seem to make all of the motors move, but we don't want to use default code because we feel like it's cheating and it would just be nice to get our own code working so we can mess or with it or change it if we want. So... anybody got any ideas? |
Re: Mecanum Drive Not Working
Quote:
Perhaps you accounted for this in your code but I didn't see it with a cursory review. Try x*x*x instead of x*x. That preserves the sign. See the following posts: TUNABLE JOYSTICK SENSITIVITY http://www.chiefdelphi.com/forums/sh...d.php?p=921992 MECANUM CODE http://www.chiefdelphi.com/forums/sh...383#post916383 ~ |
Re: Mecanum Drive Not Working
Hmm... that's true. Thanks. It still does not explain, however, why drive does not work correctly even if I just move the joystick forward, making the only input a positive y value...
|
Re: Mecanum Drive Not Working
Quote:
~ |
Re: Mecanum Drive Not Working
You can use the absolute value function to square inputs.
Code:
#include <cmath> |
Re: Mecanum Drive Not Working
Quote:
if (x<0.0) x = -(x*x); else x = x*x; |
Re: Mecanum Drive Not Working
Squaring is a funny thing. All of your inputs are between -1 and 1.
If: -1 < x < 1 then: x > x^2 If you do away with squaring, the following calculations will be easier to debug: Speed[NW] = y + x + twist; Speed[NE] = y - x - twist; Speed[SW] = y - x + twist; Speed[SE] = y + x - twist; |
Re: Mecanum Drive Not Working
Well I guess we'll just cube inputs later instead of squaring to take care of the sign change problem; the point of doing that is to have better precision control (it's easier to make small movements). For testing we can just take that out; this has no impact, however, on how the motors are moving right now (i.e. in weird directions), which means something else is wrong...
|
Re: Mecanum Drive Not Working
Quote:
Post your results here and I am quite sure you will get the help you need. *remove the squaring of the inputs first ~ |
Re: Mecanum Drive Not Working
Aside from 'if we push the main joystick full forward, I believe only two motors on opposite corners moved', what are some of the other symptoms? I'm assuming the others motors move in other joystick positions? Is it the other two motors when full right?
|
Re: Mecanum Drive Not Working
Okay so we figured out why it wasn't working. A silly problem. Basically we just didn't include the header file for the cpp which included our custom functions [namely float largest() in this case]. Thanks though everyone :D
|
| All times are GMT -5. The time now is 08:24. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi