PROS + Jotstick

I’m using PROS for a project in my PLTW class, where we don’t have any controllers (just the cortex, sensors, and parts). I was trying to figure out how I would be able to make my PROS program work without a joystick. Is this possible?

You need to call standaloneModeEnable() inside initializeIO().

https://pros.cs.purdue.edu/cortex/api/index.html#void-standalonemodeenable

What is this? I don’t see it in my file.

I’m using Cortex for this project, btw

It’s in init.c

1 Like

So, I just put void InitializeIO(){ standaloneModeEnable }

Right under #include main.h?

Are you sure you’ve created a Cortex project? initializeIO is included by default on Cortex projects. The concept doesn’t exist on V5 projects.

2 Likes

Yes, I’m sure