python实现nao机器人身体躯干和腿部动作操作
作者:Earl_Martin 时间:2021-07-02 07:39:47
本文实例为大家分享了python实现nao机器人身体躯干和腿部动作的具体代码,供大家参考,具体内容如下
跟上一篇类似,代码没什么难度,可以进行扩展。
#-*-encoding:UTF-8-*-
'''control nao's left foot,
cartesian control:torso and foot trajectories
'''
import sys
import motion
from 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)
来源:https://blog.csdn.net/u011181878/article/details/21392629
标签:python,nao,机器人
0
投稿
猜你喜欢
解读tf.keras.layers模块中的函数
2023-04-02 04:26:29
微信跳一跳小游戏python脚本
2023-07-06 10:15:15
解决VUE自定义拖拽指令时 onmouseup 与 click事件冲突问题
2024-05-10 14:15:54
javascript农历日历及世界时间代码
2007-12-21 13:25:00
python实现层次聚类的方法
2023-05-03 22:26:13
python下实现二叉堆以及堆排序的示例
2023-02-19 16:44:23
MySQL数据表使用的SQL语句整理
2024-01-20 07:13:03
MySQL建立唯一索引实现插入重复自动更新
2024-01-12 13:46:36
Mysql数据库备份和还原常用的命令
2011-12-01 10:41:54
用Python编写一个每天都在系统下新建一个文件夹的脚本
2021-11-08 22:39:16
点选TOP后并不是直接跳到页顶的,而是滚动上去
2023-09-07 02:36:43
python查看微信好友是否删除自己
2021-01-31 23:16:32
go doudou应用中使用枚举类型教程示例
2024-03-17 19:50:00
Python将阿拉伯数字转换为罗马数字的方法
2022-11-15 16:07:14
JavaScript库jQuery入门简介
2007-10-17 11:43:00
vue3+vite使用环境变量.env的一些配置情况详细说明
2024-04-26 17:38:40
Geohash的原理、算法和具体应用探究
2023-10-06 07:59:44
python连接数据库的方法
2024-01-25 18:21:06
使用Dreamweaver便捷技巧方法十六则
2010-07-02 16:28:00
php5.3 不支持 session_register() 此函数已启用的解决方法
2023-11-16 01:59:39