How Do I Program My Vex Squared Away Robot?

I am a seventh grader and my team and I built this robot but we don’t know how to program it. Are there any links or advice? Please help.

Since you are new, I’d suggest using VEXCode IQ Blocks: VEXcode Overview - VEX Robotics

It is fairly intuitive, but if you can’t figure it out let me know and i’ll help.

3 Likes

Thank you! We will look at the website.

Thank you for suggesting this. However, we have to use ROBOTC. If there are any tips for how to program our robot the right way, please send a link.

can you send us a photo and tell you what you want it to do? for repeats, i can tell you:
(this is in robotc natural language)
task main(){
repeat(number of times){
what you want it to do
}
}
forever loop:
task main(){
repeat(forever){
what you want it to do
}
}