话题模型

image.png

创建功能包

image.png

创建发布者(C++)

image.png

  1. /**
  2. * 该例程将发布turtle1/cmd_vel话题,消息类型geometry_msgs::Twist
  3. */
  4. #include <ros/ros.h>
  5. #include <geometry_msgs/Twist.h>
  6. int main(int argc, char **argv)
  7. {
  8. // ROS节点初始化,该节点名同一空间中不可重复
  9. ros::init(argc, argv, "velocity_publisher");
  10. // 创建节点句柄
  11. ros::NodeHandle n;
  12. // 创建一个Publisher,发布名为/turtle1/cmd_vel的topic,消息类型为geometry_msgs::Twist,队列长度10
  13. ros::Publisher turtle_vel_pub = n.advertise<geometry_msgs::Twist>("/turtle1/cmd_vel", 10);
  14. // 设置循环的频率,在while循环中的执行频率
  15. ros::Rate loop_rate(10);
  16. int count = 0;
  17. while (ros::ok())
  18. {
  19. // 初始化geometry_msgs::Twist类型的消息
  20. geometry_msgs::Twist vel_msg;
  21. vel_msg.linear.x = 0.5;
  22. vel_msg.angular.z = 0.2;
  23. // 发布消息
  24. turtle_vel_pub.publish(vel_msg);
  25. //在终端显示信息
  26. ROS_INFO("Publsh turtle velocity command[%0.2f m/s, %0.2f rad/s]",
  27. vel_msg.linear.x, vel_msg.angular.z);
  28. // 按照循环频率延时
  29. loop_rate.sleep();
  30. }
  31. return 0;
  32. }

配置编译规则

  • 在cmake文件中进行编译规则的添加

image.png

编译并运行发布者

image.png

创建发布者(python)

  • python存放于功能包中的scripts文件夹下

image.png

  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. # 该例程将发布turtle1/cmd_vel话题,消息类型geometry_msgs::Twist
  4. import rospy
  5. from geometry_msgs.msg import Twist
  6. def velocity_publisher():
  7. # ROS节点初始化
  8. rospy.init_node('velocity_publisher', anonymous=True)
  9. # 创建一个Publisher,发布名为/turtle1/cmd_vel的topic,消息类型为geometry_msgs::Twist,队列长度10
  10. turtle_vel_pub = rospy.Publisher('/turtle1/cmd_vel', Twist, queue_size=10)
  11. #设置循环的频率
  12. rate = rospy.Rate(10)
  13. while not rospy.is_shutdown():
  14. # 初始化geometry_msgs::Twist类型的消息
  15. vel_msg = Twist()
  16. vel_msg.linear.x = 0.5
  17. vel_msg.angular.z = 0.2
  18. # 发布消息
  19. turtle_vel_pub.publish(vel_msg)
  20. rospy.loginfo("Publsh turtle velocity command[%0.2f m/s, %0.2f rad/s]",
  21. vel_msg.linear.x, vel_msg.angular.z)
  22. # 按照循环频率延时
  23. rate.sleep()
  24. if __name__ == '__main__':
  25. try:
  26. velocity_publisher()
  27. except rospy.ROSInterruptException:
  28. pass