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

poonam1120's profile - activity

2023-04-24 16:15:34 -0500 received badge  Nice Question (source)
2022-03-21 09:21:32 -0500 received badge  Famous Question (source)
2021-02-11 09:06:06 -0500 marked best answer ROS2- passing arguments with launch.py file not working

Hi Folks,

I am trying to launch nodes with launch.py in ros2. Nodes are getting launched but I am facing issue with arguments passing.

My Code snippet:

launch_ros.actions.Node(
            package='tf2_ros', node_executable='static_transform_publisher',node_name='bl_imu', output='screen',
            #arguments=['-0.07' '0' '0' '3.14159' '0' '0' 'base_link' 'laser' '100']),         
            #arguments=['--x','-0.07', '--y', '0', '--z', '0', '--qx', '3.14159', '--qy', '0', '--qz' ,'0', '--qw','1.570796327','--      #frame_id','base_link','--child_frame_id','imu_link']),

I would like to pass arguments to this node static_transform_publisher.

I tried above two ways but getting error with this specific node.

[ERROR] []: static_transform_publisher exited due to not having the right number of arguments
A command line utility for manually sending a transform.
Usage: static_transform_publisher x y z qx qy qz qw frame_id child_frame_id 
OR 
Usage: static_transform_publisher x y z yaw pitch roll frame_id child_frame_id 
[ERROR] [launch]: process[static_transform_publisher-1] process has died [pid 7074, exit code 255, cmd '/opt/ros/bouncy/lib/tf2_ros/static_transform_publisher __node:=bl_imu'].

Please let me know if anybody has tried this or any suggestions.

Thanks, Poonam

2020-09-22 11:32:44 -0500 received badge  Favorite Question (source)
2020-03-31 13:58:16 -0500 received badge  Famous Question (source)
2020-01-29 10:41:25 -0500 received badge  Notable Question (source)
2019-10-18 09:05:15 -0500 received badge  Famous Question (source)
2019-07-18 05:25:14 -0500 received badge  Famous Question (source)
2019-07-01 12:20:17 -0500 received badge  Notable Question (source)
2019-06-26 16:17:07 -0500 received badge  Popular Question (source)
2019-06-05 07:16:12 -0500 received badge  Famous Question (source)
2019-04-22 15:13:37 -0500 received badge  Notable Question (source)
2019-03-29 05:09:09 -0500 received badge  Famous Question (source)
2019-03-13 16:06:31 -0500 received badge  Famous Question (source)
2019-02-21 04:20:57 -0500 received badge  Famous Question (source)
2019-02-11 05:34:11 -0500 received badge  Favorite Question (source)
2019-02-10 13:44:58 -0500 received badge  Popular Question (source)
2019-02-07 02:13:23 -0500 commented question Camera plugin failed to Load on Crystal

I solved this by following below steps:- Created new workspace and copied only gazebo_plugin project in that. Locate lib

2019-02-04 23:43:41 -0500 received badge  Notable Question (source)
2019-02-04 13:47:11 -0500 received badge  Popular Question (source)
2019-02-04 03:42:55 -0500 asked a question spawn model with ROS2 gazebo

spawn model with ROS2 gazebo Hi, I followed this link and able to spawn the sdf model in gazebo. https://github.com/

2019-02-04 03:29:20 -0500 commented question Is there a tutorial for creating and Controlling a simple wheeled robot in gazebo and rviz with ROS2

@charles.haynes , Did you try this link? http://gazebosim.org/tutorials?tut=ros2_installing&cat=connect_ros

2019-01-25 07:02:52 -0500 commented question Error [Model.cc:932] Unable to find link[link] Error [Plugin.hh:156] Failed to load plugin libgazebo_ros_camera.so: libCameraPlugin.so: cannot open shared object file: No such file or directory

Hi, Have you solved this issue? I am facing same issue on crystal. Thanks.

2019-01-25 03:51:41 -0500 asked a question Camera plugin failed to Load on Crystal

Camera plugin failed to Load on Crystal Hi All, I followed this tutorial "http://gazebosim.org/tutorials?tut=ros2_insta

2019-01-21 00:11:39 -0500 received badge  Notable Question (source)
2019-01-18 00:32:19 -0500 marked best answer ROS2 diff between node and component

Hi all,

what is the difference between node and component? As per my understanding and demo example of composition, component is also similar to node.

I also tried the simple example to add simple node(which has been created in class and loaded compile time) in the executor. But I am not able to understand the advantage of component over node?

Thanks in advance!!

2019-01-18 00:30:54 -0500 received badge  Popular Question (source)
2019-01-17 05:14:28 -0500 asked a question ROS2 diff between node and component

ROS2 diff between node and component Hi all, what is the difference between node and component? As per my understanding

2019-01-14 00:31:12 -0500 received badge  Notable Question (source)
2019-01-10 12:09:36 -0500 received badge  Popular Question (source)
2019-01-09 01:38:59 -0500 asked a question ROS2 parameter sync and async

ROS2 parameter sync and async Hi Everyone, I am tryin demo examples of ROS2 paramter,(sync and async both) but not with

2019-01-04 14:50:59 -0500 received badge  Notable Question (source)
2019-01-04 13:31:26 -0500 received badge  Commentator
2019-01-04 13:31:26 -0500 commented answer Min and max value with ROS2 Parameter

Thanks all for the response

2019-01-04 13:30:07 -0500 marked best answer Min and max value with ROS2 Parameter

Hi Everyone,

The dynamic reconfigure is not available in ROS2, and its replacement Parameter feature is used. With ROS, .cfg files are used, where parameter's value, min , max and other details can be given. With ROS2, I tried to set parameter with value and its working fine, but is there a way to set min and max value for that parameter? e.g. of .cfg

gen.add ("min_x", double_t, 0, "X coordinate of the minimum point of the box.", -1, -1000, 1000)

Thanks.

2019-01-04 10:31:22 -0500 received badge  Popular Question (source)
2019-01-04 02:13:33 -0500 asked a question Min and max value with ROS2 Parameter

Min and max value with ROS2 Parameter Hi Everyone, The dynamic reconfigure is not available in ROS2, and its replacemen

2019-01-03 12:17:03 -0500 received badge  Popular Question (source)
2019-01-03 05:47:31 -0500 asked a question ROS2 composition

ROS2 composition Hi All, I tried the demo examples of the composition and understood it at some extent. I am trying t m

2019-01-03 05:35:49 -0500 received badge  Popular Question (source)
2019-01-01 15:47:07 -0500 received badge  Notable Question (source)
2018-12-20 12:48:43 -0500 marked best answer Dictionary item in yaml in ros2

Hi ,

I am aware of simple parameters defining in yaml in ros2 but seeking some help to convert below into ros2 yaml . Please let me know if anyone had handled such type of yaml.

TransferFunction:
  - name: transfer_function
    type: filters/MultiChannelTransferFunctionFilterDouble
    params:
      a: [1.0, -1.760041880343169, 1.182893262037831]
      b: [0.018098933007514, 0.054296799022543, 0.054296799022543, 0.018098933007514]

Thanks.

2018-12-20 12:48:18 -0500 answered a question Dictionary item in yaml in ros2

its working for me now. I thought the way params declared here will be changed, but its same. Following code snippet is

2018-12-16 18:54:18 -0500 received badge  Popular Question (source)