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

aarushg's profile - activity

2023-03-17 10:29:36 -0500 received badge  Good Question (source)
2022-02-06 07:04:31 -0500 received badge  Nice Question (source)
2021-08-14 11:07:10 -0500 received badge  Nice Answer (source)
2021-03-01 08:17:07 -0500 received badge  Teacher (source)
2020-09-16 23:50:54 -0500 answered a question ros2 parameter listener/callback

Yes there is, it's called on_parameter_event. Example can be found in ros2 demos - https://github.com/ros2/demos/blob/ma

2020-09-16 23:50:54 -0500 received badge  Rapid Responder (source)
2019-09-11 08:03:34 -0500 received badge  Student (source)
2018-10-22 08:45:52 -0500 received badge  Famous Question (source)
2018-09-12 04:24:15 -0500 received badge  Famous Question (source)
2018-08-28 05:32:44 -0500 received badge  Notable Question (source)
2018-08-24 08:40:11 -0500 received badge  Famous Question (source)
2018-08-22 20:25:18 -0500 received badge  Notable Question (source)
2018-06-21 06:55:24 -0500 received badge  Popular Question (source)
2018-06-20 18:00:13 -0500 edited question rclcpp parameter build fail

rclcpp parameter build fail I was trying to build the laser_proc repo for ros2 found here, but I am getting these errors

2018-06-20 17:58:29 -0500 asked a question rclcpp parameter build fail

rclcpp parameter build fail I was trying to build the laser_proc repo for ros2 found here, but I am getting these errors

2018-06-20 01:26:45 -0500 received badge  Popular Question (source)
2018-06-19 19:13:34 -0500 marked best answer Initialize parameters via yaml in ros2

According to this PR, we can now initialize parameters via yaml file. I edited the talker example to have the parameter client so I can see the changes in parameters, but when I try to load the parameters via this line as given in the PR comments

ros2 run demo_nodes_cpp talker_with_params __params:=install/share/demo_nodes_cpp/talker_params.yaml

I get this error

terminate called after throwing an instance of 'std::runtime_error' 
what(): Failed to parse parameters install/share/demo_nodes_cpp/talker_params.yaml

anything I'm doing wrong?

2018-06-19 19:13:29 -0500 commented answer Initialize parameters via yaml in ros2

yes, thank you. I wasn't aware of this yaml syntax it works now.

2018-06-19 18:44:02 -0500 asked a question Initialize parameters via yaml in ros2

Initialize parameters via yaml in ros2 According to this PR, we can now initialize parameters via yaml file. I edited th

2018-05-25 12:16:39 -0500 received badge  Notable Question (source)
2018-05-18 10:39:38 -0500 received badge  Supporter (source)
2018-05-18 10:39:28 -0500 marked best answer ROS2 environment variables

Hi, I was building ROS2 from source and I already had kinetic installed on my system. After following all the instructions here, I tried to see my environment variables to check if everything was fine(as I did with each distro of ROS1) but I got this output :

ROS_ROOT=/opt/ros/kinetic/share/ros
ROS_PACKAGE_PATH=/home/batman/rosbuild-packages:/home/batman/catkin_ws/install/share:/opt/ros/kinetic/share
ROS_MASTER_URI=http://192.168.88.10:11311
ROS_VERSION=2
ROSCONSOLE_FORMAT=${message}
ROS_HOSTNAME=192.168.88.223
ROSLISP_PACKAGE_DIRECTORIES=
ROS_DISTRO=ardent
ROS_IP=192.168.88.223
ROS_ETC_DIR=/opt/ros/kinetic/etc/ros

Here I can see the ROS_VERSION as 2 and the distro variable as ardent but the ROS_PACKAGE_PATH and ROS_ROOT is still set according to kinetic. Do I need to change that, if yes how?

2018-05-18 10:39:28 -0500 received badge  Scholar (source)
2018-05-18 10:35:26 -0500 answered a question get YAML list of dictionary items with ros::param in C++

You can see the Retrieving lists section in the end of this page http://wiki.ros.org/roscpp/Overview/Parameter%20Server.

2018-05-16 05:56:31 -0500 received badge  Enthusiast
2018-05-15 00:45:22 -0500 commented question Rviz receives LaserScan messages but doesn't display them

For debugging, maybe you can try and see output of rostopic echo /fakeScan to check what values are actually being publi

2018-05-14 14:07:52 -0500 asked a question ament build exception

ament build exception I was building fine with ament build, but after I unsuccessfully tried to use rosdep for a package

2018-05-12 09:04:46 -0500 received badge  Popular Question (source)
2018-05-11 11:35:51 -0500 commented answer ROS2 environment variables

Thanks! But since I was using kinetic since a long time, it was already sourced, so is there a way to unsource it(reset

2018-05-11 04:59:28 -0500 asked a question ROS2 environment variables

ROS2 environment variables Hi, I was building ROS2 from source and I already had kinetic installed on my system. After f