1 Star 0 Fork 1

WangWeitong/dachuang

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vel_control.py 520 Bytes
一键复制 编辑 原始数据 按行查看 历史
WangWeitong 提交于 2021-04-10 00:02 . ver 0.1
#!/usr/bin/env python
import rospy
from geometry_msgs.msg import Twist
def vel_publisher():
rospy.init_node('vel_publisher', anonymous=True)
vel_pub = rospy.Publisher('/robot_1/cmd_vel', Twist, queue_size=10)
rate = rospy.Rate(10)
while not rospy.is_shutdown():
vel_msg = Twist()
vel_msg.linear.x = 0.3
vel_pub.publish(vel_msg)
rospy.loginfo("pub velocity [%0.2f m/s]",vel_msg.linear.x)
rate.sleep()
if __name__ == '__main__':
try:
vel_publisher()
except rospy.ROSInterruptException:
pass
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/wwt_panache/dachuang.git
git@gitee.com:wwt_panache/dachuang.git
wwt_panache
dachuang
dachuang
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385