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

LbrRobix's profile - activity

2020-04-14 08:35:49 -0500 received badge  Famous Question (source)
2018-06-15 17:33:06 -0500 received badge  Famous Question (source)
2018-06-15 17:33:06 -0500 received badge  Notable Question (source)
2018-06-15 17:33:06 -0500 received badge  Notable Question (source)
2018-06-15 17:33:05 -0500 received badge  Notable Question (source)
2017-07-14 16:04:28 -0500 received badge  Popular Question (source)
2017-03-26 13:32:42 -0500 received badge  Popular Question (source)
2017-03-25 19:24:04 -0500 received badge  Popular Question (source)
2017-03-24 11:41:09 -0500 asked a question why my Python code is running?

I playing alot with :::ROS and I realize this:

I can modify my Python app and start it again by doing:

$rosrun mypkg mypython.py

no need to go back to catkin workspace and do catkin_make

but if I do that (catkin_make) everything works too...

then what is the sense behind the catkin_make command

2017-03-24 10:12:17 -0500 received badge  Student (source)
2017-03-24 10:09:23 -0500 asked a question Rosparam fails silenntly with a wrong param?

How can I see the type of parameter I can pass to when I set a Rosparam?

I do

$rosparam list

and got:

/background_r

/background_g

/background_b

etc

those are intuitive enough to predict that are ints

but if i need the type by doing

$rosparam type /background_r

I got an error since that command is not existing...

on the other hand, doing:

$rosparam set /background_r "foo"

fails silently...

what am doing wrong?

2017-03-24 06:14:01 -0500 received badge  Supporter (source)
2017-03-24 06:05:47 -0500 asked a question Is the Tag in Package.xml redundant?

Am learning :::ROS from here: http://wiki.ros.org/ROS/Tutorials/Wri...

but is not 100% clear to me what is this in the package.xml file

find_package(catkin REQUIRED COMPONENTS roscpp rospy std_msgs genmsg)

I need to do REQUIRED and COMPONENTS, but hold on, is not a roscpp required too? what belowns to REQUIRED and what to COMPONENTS ???

Thanks!