No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro jazzy. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 0.0.0
License TODO: License declaration
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/jderobot/roboticsinfrastructure.git
VCS Type git
VCS Version humble-devel
Last Updated 2025-04-02
Dev Status UNMAINTAINED
CI status No Continuous Integration
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Package contains Custom Robots for jderobot's RoboticAcademy

Additional Links

No additional links.

Maintainers

  • root

Authors

No additional authors.

CUSTOM ROBOT PACKAGE

This directory is entirely a ROS2 package with its CMakeLists.txt and package.xml. Every robot’s resources directories will be stored in /home/ws/install/custom_robots/share/custom_robots after building the workspace and so the package named in every xml, xacro, urdf file muste be custom_robots.

BUILD NEW ROBOT

In order to create a knew robot and for it to be succesfully built open CMakeLists.txt and add the necessary resources in the following lines:

# find dependencies
set(PROJECT_DEPENDENCIES
  ament_cmake
  ...
        <------ add any dependencies that your robot will need
)

-----/-/-/-----

install(DIRECTORY
  ...
        <------ add the directories that contain the necessary 
                resources for your robot (urdf, rviz, launch, meshes, models etc.)

  DESTINATION share/${PROJECT_NAME}
)

GAZEBO CAMERA

Place gzclient camera in a fixed position of the world adding to the .world file:

<gui fullscreen=1>
  <camera name='user_camera'>
    <pose >X Y Z ROLL PITCH YAW</pose>
    <view_controller>orbit</view_controller>
    <projection_type>perspective</projection_type>
  </camera>
</gui>
  • Replace X Y Z ROLL PITCH YAW with the world’s position you want the camera to be set

Make the gzclient camera follow a model adding to the .world file:

<gui fullscreen=1>
  <camera name="user_camera">
    <track_visual>
      <name>MODEL_NAME</name>
      <static>true</static>
      <use_model_frame>true</use_model_frame>
      <xyz>X Y Z</xyz>
      <inherit_yaw>true</inherit_yaw>
    </track_visual>
  </camera>
</gui>
  • Replace MODEL_NAME with the name of the model you want the camara to follow
  • Replace X Y Z with the relative coordinates to the model you want the camera to be set
CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

Plugins

No plugins found.

Recent questions tagged custom_robots at Robotics Stack Exchange

No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.