-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
I'd suggest simply designing your fleet adapter to ignore the rotation command. When you issue commands to your AMR, just don't put in an orientation goal if the AMR's API allows you to exclude that. You can also skip over commanded path waypoints that are on the same vertex and only differ by the orientation. RMF should be robust to skipping over waypoints in the path command. Just make sure to use the correct path index when you trigger the |
Beta Was this translation helpful? Give feedback.
-
Hi @mxgrey , Assuming the robot has an API to return its current velocity, is it better if the remaining duration is calculated using the robot current velocity? |
Beta Was this translation helpful? Give feedback.
I'd suggest simply designing your fleet adapter to ignore the rotation command. When you issue commands to your AMR, just don't put in an orientation goal if the AMR's API allows you to exclude that. You can also skip over commanded path waypoints that are on the same vertex and only differ by the orientation.
RMF should be robust to skipping over waypoints in the path command. Just make sure to use the correct path index when you trigger the
next_arrival_estimator
callback.