![]() |
minimec_control package from minimec-ros2 repominimec_bringup minimec_control minimec_description minimec_driver minimec_lights minimec_msgs |
Package Summary
Tags | No category tags. |
Version | 0.0.1 |
License | MIT |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/maxipalay/minimec-ros2.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2024-04-11 |
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
Additional Links
Maintainers
- Maximiliano Palay
Authors
minimec_control
ROS2 package for controlling a mecanum wheel base. Made for controlling the Minimec, but can be extended for other platforms.
Nodes
-
kinematics
: node that implements forward kinematics, taking an input twist and outputting wheel commands. -
odometry
: node that implements odometry - estimation of position according to encoder feedback. This takes in joint states and publishes the odometry transform to a topic and broadcasts it to the tf tree. -
path_generator
: node that generates spline and circular paths. -
trajectory_tracking
: node that publisher velocity commands to track a generated path using feedforward + PI feedback control
Configuration
A file for configuring basic parameters is included in config/params.yaml
. Parameters include:
- wheel radius
- wheelbase
- wheel track
Launch files
-
launch_control.launch.py
- launches the kinematics and odometry nodes, passing them the parameter file. -
launch_path_gen.launch.py
- launches the path generation node (standalone) and rviz to visualize generated paths
Running the path generation node
The path generation can work as standalone, you can just spin up the node using the provided launchfile: ros2 launch minimec_control launch_path_gen.launch.py
You can then call the service with this sample input:
-
To generate a spline path with fixed orienation:
ros2 service call /generate_spline_plan minimec_msgs/srv/SplinePlanRequest "{points: [{x: 0.0, y: 0.0},{x: 1.0, y: 0.0}, {x: 1.0, y: 1.0}, {x: 2.0, y: 1.0}, {x: 2.0, y: 0.0}, {x: 3.0, y: 0.0},{x: 3.0, y: 1.0},{x: 4.0, y: 1.0},{x: 4.0, y: 0.0},{x: 5.0, y: 0.0}], heading_mode: fixed, frame_id: odom, heading_angle: 0.0, resolution: 0.0075}""
-
To generate a spline path with point orientation:
ros2 service call /generate_spline_plan minimec_msgs/srv/SplinePlanRequest "{points: [{x: 0.0, y: 0.0},{x: 1.0, y: 0.0}, {x: 1.0, y: 1.0}, {x: 2.0, y: 1.0}, {x: 2.0, y: 0.0}, {x: 3.0, y: 0.0},{x: 3.0, y: 1.0},{x: 4.0, y: 1.0},{x: 4.0, y: 0.0},{x: 5.0, y: 0.0}], heading_mode: point, frame_id: odom, heading_point: {x: 6.0, y: 0.0}, resolution: 0.0075}"
-
To generate a circular path:
ros2 service call /generate_circular_plan minimec_msgs/srv/CircularPlanRequest "{frame_id: odom, center: {x: 0.75, y: 0.0}, resolution: 0.005, radius: 0.75}"
This will display the points in rviz and the generated path.
Attribution
This package makes use of the TinySpline library for generating the spline from reference points.
The kinematics and trajectory tracking are heavily based on Lynch, Park - Modern Robotics book and the corresponding Modern Robotics python library
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
ament_cmake | |
ament_lint_auto | |
ament_lint_common | |
rclcpp | |
minimeclib | |
geomtry_msgs | |
odrive_can | |
tf2 | |
tf2_ros | |
nav_msgs | |
sensor_msgs | |
tf2_geometry_msgs | |
minimec_msgs | |
Armadillo |