ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Bob H's profile - activity

2023-03-11 20:22:54 -0500 received badge  Notable Question (source)
2022-02-27 05:55:44 -0500 received badge  Famous Question (source)
2022-02-27 05:55:44 -0500 received badge  Notable Question (source)
2022-01-30 15:10:08 -0500 received badge  Popular Question (source)
2022-01-28 15:20:36 -0500 commented question Moveit2 install missing "release" file

Found the uninstall command. sudo apt-get remove python3-argcomplete ran it. looked like it uninstalled a lot of ros/

2022-01-28 14:59:50 -0500 commented question Moveit2 install missing "release" file

I am not using a virtual machine. The previous answer said uninstall argcomplete. Where do I find it and how do I unin

2022-01-28 13:03:19 -0500 commented question Moveit2 install missing "release" file

Is there some way to get this installed correctly?

2022-01-28 13:02:15 -0500 commented question Moveit2 install missing "release" file

did that. didn't help. tried reinstall of colcon with colcon mixin add default https://raw.githubusercontent.com/colco

2022-01-27 18:39:50 -0500 asked a question Moveit2 install missing "release" file

Moveit2 install missing "release" file I am following the tutorial for installing Moveit2 under ROS2 Galactic. Everythi

2021-11-16 15:01:05 -0500 received badge  Popular Question (source)
2021-08-13 15:15:26 -0500 commented question Microros with Teensy-3.2 issues

Yes I have.

2021-08-10 10:46:07 -0500 received badge  Enthusiast
2021-08-09 19:05:57 -0500 asked a question Microros with Teensy-3.2 issues

Microros with Teensy-3.2 issues I have been unable to get microros to work with a teensy 3.2. I have followed the steps

2021-06-17 07:55:37 -0500 received badge  Famous Question (source)
2021-06-17 07:55:37 -0500 received badge  Notable Question (source)
2021-01-12 17:28:00 -0500 received badge  Popular Question (source)
2020-12-29 15:06:57 -0500 asked a question Ros2 windows python demo not working

Ros2 windows python demo not working Trying to get the python demo, 'ros2 run demo_nodes_py listener' to run. Get the f

2020-12-29 14:59:42 -0500 received badge  Supporter (source)
2018-08-08 01:40:03 -0500 marked best answer Don't get all rostopic echo data

I have a node which publishes data 3 times. But when I look at the results of the rostopic echo, I only get the last two cycles. I have tried this with different counts, but rostopic echo always misses the first cycle.

std_msgs::Int16MultiArray head;  
ros::init(argc,argv, "xxxxxx");  
ros::NodeHandle nh;  
pubheader=nh.advertise<std_msgs>::Int16MultiArray>("Audio_head",1);  
ros::Rate loop_rate(1);  
int i,j;  
for(j=0;j<3;j++)  
{  
  head.data.clear();  
  for(i=0;i < headersize;i++)  
   {  
    head.data.push_back(header.ROSheader[i]);  
  }  
  pubheader.publish(head);  
  ros::spinOnce();  
  loop_rate.sleep();  
}

Any reason that only the last two instances are echoed?

Thanks

2018-08-08 01:24:26 -0500 marked best answer How do I integrate Intel IPP with ros

I have downloaded Intel IPP and installed it. I have written much code in the past with IPP and would like to use it with ROS. Does anybody know how to integrate it into CMakeLists.txt and package.xml to make it work with ROS? I am kind of new to Linux and ROS.

2018-08-08 01:24:08 -0500 received badge  Notable Question (source)
2018-03-16 11:00:38 -0500 received badge  Famous Question (source)
2018-02-25 05:52:02 -0500 received badge  Famous Question (source)
2017-09-30 18:32:36 -0500 received badge  Notable Question (source)
2017-07-05 19:35:16 -0500 received badge  Popular Question (source)
2017-06-19 05:35:09 -0500 received badge  Notable Question (source)
2017-06-18 17:04:36 -0500 asked a question How do I integrate Intel IPP with ROS

How do I integrate Intel IPP with ROS How do Integrate Intel IPP with ROS? What changes do I need to make to CMakeLists

2017-06-18 16:59:31 -0500 asked a question How do I integrate Intel IPP with ros

How do I integrate Intel IPP with ros I have downloaded Intel IPP and installed it. I have written much code in the pas

2017-04-29 13:37:20 -0500 received badge  Popular Question (source)
2017-04-29 10:15:11 -0500 commented question Don't get all rostopic echo data

Yes, I had rostopic running before running the node

2017-04-28 21:37:20 -0500 asked a question Don't get all rostopic echo data

Don't get all rostopic echo data I have a node which publishes data 3 times. But when I look at the results of the rost

2017-04-26 03:21:28 -0500 received badge  Popular Question (source)
2017-04-24 20:08:01 -0500 asked a question How do I send an array of int16's using rosserial

How do I send an array of int16's using rosserial I am trying to use the std_msgs, and can' figure out how to send an ar