时间:2021-05-22
本文实例为大家分享了python实现nao机器人身体躯干和腿部动作的具体代码,供大家参考,具体内容如下
跟上一篇类似,代码没什么难度,可以进行扩展。
#-*-encoding:UTF-8-*-'''control nao's left foot, cartesian control:torso and foot trajectories ''' import sysimport motionfrom naoqi import ALProxy def StiffnessOn(proxy): pNmaes="Body" pStiffnessLists=1.0 pTimeLists=1.0 proxy.stiffnessInterpolation(pName,pStiffnessLists,pTimeLists) def main(robotIP): '''example of cartesian foot trajectory ''' try : motionProxy=ALProxy("ALMotion",robotIP,9559) except Exception,e: print "could not create a proxy" print "error is ",e try: postureProxy=ALProxy("ALRobotPosture",robotIP,9559) except Exception ,e: print "could not create a proxy" print"error is",e StiffnessOn(motionProxy) #send nao to pose init postureProxy.goToPosture("StandInit",0.5) space=motion .FRAME_ROBOT AxisMask=almath.AXIS_MASK_VEL isAbsolute=False path=[0.0,-0.07,-0.03,0.0,0.0,0.0] #lower the torso and move the size effector="Torso" time=2.0 motionProxy.positionInterpolation(effector,space,path,axisMask,time,isAbsolute) #lleg motion effector="LLeg" path=[0.0,0.06,0.00,0.0,0.0,0.0] times=2.0 motionProxy.positionInterpolation(effector,space,axisMask,time,isAbsolute) if __name__=="__main__": robotIP="127.0.0.1" if len(sys.argv)<=1: print "usage python robotIP" else: robotIP=sys.argv[1] main(robotIP)以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例为大家分享了python控制nao机器人身体动作的具体代码,供大家参考,具体内容如下今天读的代码,顺便写了出来,与文档的对比,差不多。importsys
本文实例为大家分享了python实现nao机器人手臂动作的具体代码,供大家参考,具体内容如下这些天依然在看nao公司文档的东西,把读过的代码顺手敲了出来。代码依
为了实现Nao机器人与电脑端的TCP通信,于是研究了一下Python实现TCP通信,在网上也看到了很多例子,但大多都是在一台机器上验证。在两台机器上使用,出了一
前言:由于公司使用钉钉,之前告警都是使用邮箱,但是这种协同效率比较低,所以调用钉钉机器人来实现实时告警。创建机器人:创建钉钉群,然后添加群机器人。python代
机器智能的种类包括: 1、按功能分类。 传感型机器人,机器人的本体上没有智能单元只有执行机构和感应机构,它具有利用传感信息进行传感信息处理、实现控制与操作的