日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

【CoppeliaSim】使用 Lua 语言控制麦轮小车行走

發布時間:2025/4/5 43 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【CoppeliaSim】使用 Lua 语言控制麦轮小车行走 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

視頻效果地址:CoppliaSim控制無人車和無人機實現編隊控制

function sysCall_init()corout=coroutine.create(coroutineMain) endfunction sysCall_actuation()if coroutine.status(corout)~='dead' thenlocal ok,errorMsg=coroutine.resume(corout)if errorMsg thenerror(debug.traceback(corout,errorMsg),2)endend endfunction setMovement(forwBackVel,leftRightVel,rotVel)-- Apply the desired wheel velocities:sim.setJointTargetVelocity(wheelJoints[1],-forwBackVel-leftRightVel-rotVel)sim.setJointTargetVelocity(wheelJoints[2],-forwBackVel+leftRightVel-rotVel)sim.setJointTargetVelocity(wheelJoints[3],-forwBackVel-leftRightVel+rotVel)sim.setJointTargetVelocity(wheelJoints[4],-forwBackVel+leftRightVel+rotVel) endfunction coroutineMain()--Prepare initial values and retrieve handles:wheelJoints={-1,-1,-1,-1} -- front left, rear left, rear right, front rightwheelJoints[1]=sim.getObjectHandle('rollingJoint_fl')wheelJoints[2]=sim.getObjectHandle('rollingJoint_rl')wheelJoints[3]=sim.getObjectHandle('rollingJoint_rr')wheelJoints[4]=sim.getObjectHandle('rollingJoint_fr')armJoints={}for i=0,4,1 doarmJoints[i+1]=sim.getObjectHandle('youBotArmJoint'..i)endsetMovement(0,0.5,0)sim.wait(10)setMovement(0,-0.5,0) endfunction sysCall_cleanup() end

Ref: simGetObjectPosition / sim.getObjectPosition-Regular API function
Ref: CoppeliaSim User Manual
Ref: [連載 0]Vrep入門介紹
Ref: Lua 教程-菜鳥教程

總結

以上是生活随笔為你收集整理的【CoppeliaSim】使用 Lua 语言控制麦轮小车行走的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。