Vex net Joysticks

Have green lights on joystick and cortex, but when joystick is pushed motor doesnt move.

Program is downloaded and software in cortex and joy stick is up to date.

Cant figure out what I am missing?

probably an issue in your code, can you post it?

Just a simple command to test motors

What programming software is this?

Robot C graphical for vex

You need that command inside a forever loop. I don’t have ROBOTC installed so can’t post a screenshot, but you should work it our easy enough.

The way you have the code there, the instruction gets executed once, very quickly at the start of the program, then the joystick is never checked again. Putting the joystick commands inside forever loop would keep checking for inputs.

3 Likes

Thats it! Thanks for the help