-
Notifications
You must be signed in to change notification settings - Fork 277
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Contact sensor on Hector Quadrotor #109
Comments
You can add a bumber plugin to the robot urdf, see here. |
Hello Martin. Thank you. I will add this bumper plugin to the robot urdf. Normally, to add a sensor to a robot model, all we need to do is to add this plugin to the robot's main urdf file? In this case, on Hector Quadrotor Demo, there are plenty of urdf files. Which one is the main urdf file that I need to change? quadrotor_sensors.gazebo.xacro on https://github.com/tu-darmstadt-ros-pkg/hector_quadrotor/blob/kinetic-devel/hector_quadrotor_gazebo/urdf/quadrotor_sensors.gazebo.xacro or some other file? And there is also the case that as far as I understand, we need to add the new plugin to the xacro file and then it is converted to urdf. Do we need any additional files to add like a cpp file for the sensor? |
I changed the quadrotor_sensors.gazebo.xacro file and added the contact_bumper sensor as follows, saved the file, ran the simulation but could not see a new sensor added when I enter rostopic list 100.0 base_link $(arg base_link_frame) raw_imu 0 0 0 0 0.5 0.5 0.5 0.35 0.35 0.3 0.1 0.1 0.1 0.05 0.05 0.015
|
After changing the quadrotor_base.urdf.xacro file, I converted it into quadrotor_base.urdf then tried to change into quadrotor_base.sdf file but it says permission denied. Is the quadrotor_base.sdf file protected? How can we add sensors to the quadrotor model? I would be glad if I can add a contact sensor to detect collision. It will be very helpful for my maser thesis in machine learning. Best regards |
You do not have to convert the xacro to urdf or sdf, the xacro is converted during execution. You can add the sensor to any xacro, that is loaded. The one you chose should be fine. I can not give you any advice on the bumper plugin, because I have never used it. If the question is not directly related to hector_quadrotor, you can ask it at ROS Answers. |
So adding the necessary sensor to the quadrotor_base.urdf.xacro file should do the work, I won't need to do anything else. Then I will be able to see the sensor on rostopic list right? I asked the question here because I was not sure which xacro file to add the sensor as it is related with the general structure of the project, you say quadrotor_base.urdf.xacro file would be fine. Let me try and tell the result. Thank you again |
Here is the quadrotor_base.urdf.xacro file. I added the sensor plugin at two places just to be sure <xacro:include filename="$(find hector_sensors_description)/urdf/sonar_sensor.urdf.xacro" /> <xacro:macro name="quadrotor_base_macro">
</xacro:macro> After that I saved the project and run with roslaunch hector_quadrotor_demo indoor_slam_gazebo.launch command. There was no difference with the sensor list. I closed the project and typed catkin_make Then I re run the project. The final list of the sensors are as follows user:~$ rostopic list Again the contact sensor was not there. Can it be because I am working on the constructsim environment or something else? |
Your issue is probably related to your usage of the bumper plugin. You might want to look into, if you are using it correctly. However, I can not help you any further in this regard. |
Alright Martin. Vielen dank! :) |
Hello,
I am trying to add a bump contact sensor to indicate if there is a contact to another object at a time. In other words, I am trying to detect collision. Is there anything implemented on the hector quadrotor or do I have to add a contact sensor? If so, how can I add a contact sensor to the hector quadrotor model? I looked at a lot of tutorials and answers from different sources but could not find anything to fit hector quadrotor demo. I would be happy if someone helps.
Best
The text was updated successfully, but these errors were encountered: