Replies: 1 comment
-
It's possible to implement this using It's also perfectly fine to implement this workflow using the
If there's a risk that multiple
I wouldn't say that there's one "right" way to implement it. Both docks and ingestor/dispenser can work fine; it'll come down to personal preference. |
Beta Was this translation helpful? Give feedback.
-
Hi,
How can the cart pickup and dropoff as shown in the video be implemented in RMF?
In my approach, I have created waypoints as shown below:
For pickup, send a go to task the robot to the pickup waypoint (e.g.
name
:pickup_03
withdock_name
:pickup_03
). When the robot has reached the waypoint before the pickup waypoint, the fleet adapter will be issued with adock
command with adock_name
. In the MiR fleet adapter, the command that is sent to MiR is a mission that containsdock
andlatch
action. Thedock
action will trigger the robot to search for the cart base profile and perform docking, and thelatch
action will make the robot top module latch the two metal pins to the cart base One of the parameters to thedock
action, ispickup_03
, which is the target shelf position to dock into. (in MiR. there needs to be ashelf position
namedpickup_03
).And as I went through traffic-editor documentation, I noticed there is workcell and a
pickup_dispenser
anddelivery_ingestor
, and there is a sample demo to test it.Is using
pickup_dispenser
anddropoff_ingestor
the right approach for my scenario and how can I use them in MiR fleet adapter?Beta Was this translation helpful? Give feedback.
All reactions