We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For recent versions of V-REP, i had to modify the child script in MyRobot.ttt to:
` -- Initialization. if (sim_call_type == sim.syscb_init) then
-- Reset target velocities (which may have been modified at a previous session). front_left_wheel_joint = sim.getObjectHandle('front_left_wheel_joint') back_left_wheel_joint = sim.getObjectHandle('back_left_wheel_joint') back_right_wheel_joint = sim.getObjectHandle('back_right_wheel_joint') front_right_wheel_joint = sim.getObjectHandle('front_right_wheel_joint') sim.setJointTargetVelocity(front_left_wheel_joint, 0) sim.setJointTargetVelocity(back_left_wheel_joint, 0) sim.setJointTargetVelocity(back_right_wheel_joint, 0) sim.setJointTargetVelocity(front_right_wheel_joint, 0)
end `
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For recent versions of V-REP, i had to modify the child script in MyRobot.ttt to:
`
-- Initialization.
if (sim_call_type == sim.syscb_init) then
end
`
The text was updated successfully, but these errors were encountered: