Hi I’m getting a memory permission error on the V5 with this simplest of programs.
Hi alb4hrm.
I apologize for the uninformative error message here. Named arguments are not supported in Robot Mesh Studio Python. The correct way to call vex.wait()
is vex.wait(10, TimeUnits.SEC)
(Additionally, because we do from vex import *
on line 4, you can do wait()
instead of vex.wait()
)
Here is a working version of your program: https://www.robotmesh.com/studio/5f444af70efbbd0477036292
Cheers, Sam.