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

JaFeKl's profile - activity

2023-06-18 10:02:25 -0500 received badge  Notable Question (source)
2023-06-18 10:02:25 -0500 received badge  Popular Question (source)
2022-09-07 09:26:33 -0500 asked a question Accessing node namespace in code assigned by roslaunch

Accessing node namespace in code assigned by roslaunch Hello everyone, I have the following problem. I am running a nod

2022-04-02 03:33:54 -0500 answered a question VS Code include error for custom message headers, but builds fine

Came across the same problem: Adding "${workspaceFolder}/../../devel/include" to the include path in c_cpp_properties.j

2022-01-20 16:24:55 -0500 commented answer [tf2] get new transform as soon as possible (callback)?

Do you have any example how to do this with placeholder data as you mentioned? In my case I would like to have a callbac

2021-01-08 02:29:11 -0500 commented answer bringing up ur5, controller spawner shutted down

I just ran into the exact same issues as described in the question above, I made shure that all ros-control related pack

2021-01-07 11:27:40 -0500 received badge  Famous Question (source)
2021-01-07 11:27:11 -0500 answered a question Unable to start UR5 under ROS Melodic

I ran into the exact same problem today, were you able to fix it already?

2020-12-18 13:27:11 -0500 marked best answer Issue with ros::Time when using /use_sim_time

Hello everyone,

I have the following issue that ros::Time::now()` always returns zero using the following minimum example.

#include <ros/ros.h>

int main(int argc, char **argv)
{
      ros::init(argc, argv, "force_test_trajectory_pub");     // create ROS node
      while(ros::ok())  {
            beginTime = ros::Time::now();
            ROS_INFO("Starting time %f", beginTime.toSec());
      }
}

The following things are running propperly:

  • I first start roscore as usual
  • Then I set the parameter /use_sim_time to true
  • Then I run gazebo using rosrun gazebo_ros gazebo to get a clock published on /clock
  • Then I run the example above but which only outputs 0 even though /clock is constantly publishing

When I pause Gazebo, the while loop stops as well, which means synchronization is working in some way.

Do you have any suggestion how to fix this problem?

2020-09-01 08:17:39 -0500 received badge  Taxonomist
2020-03-26 07:54:15 -0500 received badge  Famous Question (source)
2020-03-26 07:54:15 -0500 received badge  Notable Question (source)
2019-08-14 02:06:12 -0500 received badge  Popular Question (source)
2019-07-09 16:06:35 -0500 edited question Issue with ros::Time when using /use_sim_time

Issue with ros::Time when using /use_sim_time Hello everyone, I have the following issue that ros::Time::now()` always

2019-07-09 16:06:35 -0500 received badge  Editor (source)
2019-07-09 16:05:37 -0500 asked a question Issue with ros::Time when using /use_sim_time

Issue with ros::Time when using /use_sim_time Hello everyone, I have the following issue that ros::Time::now()` always

2019-05-20 01:28:17 -0500 marked best answer robot_state_publisher posting wrong tf tree (missing connections)

Dear ROS community,

I have the following problem:

I'm trying to simulate a robotic leg using ROS kinetic and Gazebo.

In order to get information about the current frame of each link I'm using the robot_state_publisher. He's a subscriber of the /joint_states topic and also receives information from the parameter robot_description which is loaded as an parameter using the xacro file, which describes the leg construction with all it's links and joints. He then publishes to the topic /tf

When I use the rqt_tf_tree to check the tf_tree I have 3 unconnected tree structures as a result, two Joints are missing. I first thought the xacro files would be incompleted, but I checked the robot_description by using $ rosparam get /robot_description

E.g.

<joint name="joint_B1" type=" continuous">
  <origin rpy="0 0.512690467 0" xyz="-0.05 -0.005 0"/>
  <parent link="upper_leg"/>
  <child link="connector_2"/>
  <axis xyz="0 1 0"/>
  <dynamics friction="0"/>
  <limit effort="10" velocity="10"/>
</joint>

is one of the missing connections.

Do you guys have any suggestion where my problem could be?

2018-10-24 01:54:00 -0500 received badge  Famous Question (source)
2018-10-24 01:14:06 -0500 received badge  Student (source)
2018-07-21 01:36:16 -0500 received badge  Famous Question (source)
2018-07-19 12:49:10 -0500 commented question Issue when periodically republishing Joint Trajectory messages

yes the node is starting to republish both messages A and B, however, he should stop republishing A when B arrives

2018-07-19 01:17:06 -0500 received badge  Notable Question (source)
2018-07-18 12:17:01 -0500 received badge  Popular Question (source)
2018-07-18 11:29:53 -0500 edited question Issue when periodically republishing Joint Trajectory messages

Issue when periodically republishing Joint Trajectory messages Hello ROS community, I am trying the following thing: I

2018-07-18 11:13:42 -0500 commented answer Issue when periodically republishing Joint Trajectory messages

Thanks for your response, I am trying to achieve the following: see this picture the problem appears when the planner_no

2018-07-18 07:46:27 -0500 asked a question Issue when periodically republishing Joint Trajectory messages

Issue when periodically republishing Joint Trajectory messages Hello ROS community, I am trying the following thing: I

2018-07-18 07:03:55 -0500 received badge  Notable Question (source)
2018-06-18 08:12:25 -0500 received badge  Notable Question (source)
2018-05-13 03:28:15 -0500 received badge  Popular Question (source)
2018-05-11 11:57:07 -0500 asked a question Odometry estimation ONLY based on IMU sensor

Odometry estimation ONLY based on IMU sensor Hello guys, I'm trying to run some simulations in gazebo where I want to s

2018-03-24 03:54:04 -0500 received badge  Enthusiast
2018-03-19 04:34:43 -0500 received badge  Popular Question (source)
2018-03-18 04:44:36 -0500 answered a question robot_state_publisher posting wrong tf tree (missing connections)

The missing connections were caused by missing transmission elements in the xacro file. I thought only transmission elme

2018-03-17 14:50:31 -0500 commented question ROS says it can't find any executable file

Have you used ´catkin_make´ afterwards?

2018-03-17 14:24:50 -0500 commented question How to refer to propeties using macro prefixes?

I was thinking about the same a few days ago, i tried it as well and hoped it would work out, maybe we get an answer for

2018-03-17 14:23:36 -0500 received badge  Supporter (source)
2018-03-17 14:19:45 -0500 asked a question robot_state_publisher posting wrong tf tree (missing connections)

robot_state_publisher posting wrong tf tree (missing connections) Dear ROS community, I have the following problem: I'