Originally Posted By Thomas.W (3560X): Okay so I am new to the whole mecanum thing on EasyC can some tell me how to program it step by step and have it so if I press the buttons on the left side of the controller they will move the robot with mecanum wheels sideways (im talking about the buttons on the left side mainly the left side one and the right side on out of the 4 on the left side. It would be much appreciated thanks ^^
Because this is in the official EasyC Q&A I am not able to respond so I created a new thread. A tutorial for creating a mecanum drive can be seen here.
You’ve created some excellent tutorials. Thanks for helping with EasyC Support. Can I suggest a “How to use the EasyC Text Editor” edition…
//not exact syntax, but this will give you an idea
if(left_button == pressed)
{
front left wheel motor = forward;
back left wheel motor = backwards;
back right wheel motor = forward;
front right wheel motor = backwards;
}
else if(right_button == pressed)
{
front left wheel motor = backwards;
back left wheel motor = forward;
back right wheel motor = backwards;
front right wheel motor = forward;
}
else
{
//either put joystick control or stop motors here
}
move the wheels like this
https://vexforum.com/attachment.php?attachmentid=8050&d=1391704440
I’ll have one in a few hours along with a few more tutorials. 
Edit: Tutorial for the EasyC Text Editor can be seen here.
Sweet! I see you’ve also added a “Basic Sensors” tutorial. All 5 of these are well done and elaborate (but not overwhelming). Can I have your permission to include links to each tutorial in the EasyC technical FAQ?
Thanks
Yes! You may use them for education purposes. That was the point in making them! Thanks!
Thank you! I’ve included links to the videos in the EasyC Technical FAQ. If you create additions to the series please let me know via PM or E-mail me through my profile and I’ll add to the FAQ. Thanks again!