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.1.0
License Apache-2.0
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/commonplacerobotics/irc_ros.git
VCS Type git
VCS Version humble
Last Updated 2024-10-07
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

The irc_ros_controllers package

Additional Links

Maintainers

  • Felix Reuter

Authors

  • Felix Reuter

iRC ROS Controllers

This package contains the custom controllers for the iRC ROS project:

Dashboard Controller

The Dashboard Controller is used to monitor and control the different modules. Currently this is only possible for CPRCANv2, in the future an implementation for CRI might be possible. The interface works by listening to a multitude of the modules interfaces, in addition to topics such as /joint_states, and combines all the information. To simplify listening to the many interfaces Semantic Component Interfaces are used. Another example how these work can be found under Links at the end of this readme. The message types used are defined in irc_ros_msgs.

More information about the dashboard itself can be found in the irc_ros_dashboard package.

DIO Controller

Adds a controller for using DIOs via CAN. The command outputs are for the Rebel_01, if you have a very early rebel model or a different robot please note that it will look different for you. The ReBeL 01 has two inputs and outputs in the arm and seven of each in the base.

ROS2 Control specific commands

When successfully using this package you should be able to see the DIO Controller:

$ ros2 control list_controllers

dio_controller      [irc_ros_controllers/DIOController] active    
[...]

$ ros2 control list_hardware_interfaces

command interfaces
	dio_arm/digital_output_0 [available] [claimed]
	dio_arm/digital_output_1 [available] [claimed]
	dio_base/digital_output_0 [available] [claimed]
	dio_base/digital_output_1 [available] [claimed]
	dio_base/digital_output_2 [available] [claimed]
	dio_base/digital_output_3 [available] [claimed]
	dio_base/digital_output_4 [available] [claimed]
	dio_base/digital_output_5 [available] [claimed]
	dio_base/digital_output_6 [available] [claimed]
    [...]

state interfaces
	dio_arm/digital_input_0
	dio_arm/digital_input_1
	dio_base/digital_input_0
	dio_base/digital_input_1
	dio_base/digital_input_2
	dio_base/digital_input_3
	dio_base/digital_input_4
	dio_base/digital_input_5
	dio_base/digital_input_6
    [...]


Note that the hardware command interfaces are claimed by this controller and are provided by the irc_ros_hardware package, more precise by the CAN implementation.

Setting states

The setting of states is done over messages or service calls. To see all available output controllers you can use:

$ ros2 topic list
[...]
/dio_controller/set_outputs
[...]
/external_dio_controller/set_outputs
[...]

$ ros2 service list
[...]
/dio_controller/set_outputs
[...]
/external_dio_controller/set_outputs
[...]

Currently you can only see which outputs are available via the controller configuration file. In the future a list_outputs command could be an option.

Setting states works like the following:

$ ros2 topic pub --once /dio_controller/set_outputs irc_ros_msgs/msg/DioCommand '{names:[dio_arm/digital_output_0, ],outputs: [False, ]}'

$ ros2 service call /dio_controller/set_outputs irc_ros_msgs/srv/DioCommand '{names:[dio_arm/digital_output_0, ],outputs: [False, ]}'

The service call will respond with success unless the number of outputs names and states do not match.

Reading out states

Currently there is no way to read out all inputs via one topic. Reading out a single digital input works over the corrosponding /[module_name]/[input_name]/state topic, e.g.:

The available controllers can be seen with the following command:

$ ros2 topic list
[...]
/dio_controller/get_inputs
[...]
/external_dio_controller/get_inputs
[...]

External DIO Gripper

A gripper connected to the CAN bus via an external DIO-Module is also controlled over the dio controller as follows:

$ ros2 topic pub --once /external_dio_controller/set_outputs irc_ros_msgs/msg/DioCommand '{names:[dio_ext/digital_output_0, ],outputs: [True, ]}'

Note: The meshes included by the respective urdf files are not correct, instead the same as the ones for the ECBPMI are used temporarily.

ECBPMI

Controller for the Schmalz ECBPMI vacuum gripper. Since the grasp/release functionality and feedback are more complicated than toggling a single digital output a separate controller is implemented. One of the signals control the generate vacuum pin (normally dio_arm/digital_output_0), which starts the pump until a stable vacuum is detected. The release vacuum pin (normally dio_arm/digital_output_1) vacates the vacuum again and thus releases the grasped object. The gripper gives feedback if a vacuum is currently active (normally dio_arm_digital_input_0). The controller waits for this signal after a grip/release command to confirm the success. If a timeout of 1 second (Set in the schamlz_ecbpmi_controller.hpp) is reached the controller replies that the gripping was unsuccessful. A second output signal is available for user definable feedback (normally dio_arm_digital_input_1), which is currently not implemented in the controller.

Command

Gripping is possible via topic and service call:

$ ros2 topic pub --once /ecbpmi_controller/set_gripper irc_ros_msgs/msg/GripperCommand "{grip: false}"

Setting states via service call can be done like this:

$ ros2 service call /ecbpmi_controller/set_gripper irc_ros_msgs/srv/GripperCommand "{grip: true}"

The service response is equivalent to the state topic content.

State

The gripper state is published to a topic. It provides information if the vacuum is stable, meaning the gripper is successfully gripping.

$ ros2 topic echo /ecbpmi_controller/gripper_state
header:
  stamp:
    sec: 1675961396
    nanosec: 456334931
  frame_id: ''
grasped: false

See:

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.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged irc_ros_controllers 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.