File tree Expand file tree Collapse file tree 1 file changed +15
-8
lines changed Expand file tree Collapse file tree 1 file changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -17,15 +17,22 @@ this complexity in consideration when designing your packages to make sure that
17
17
18
18
.. mermaid ::
19
19
20
- %%{init: { "theme" : "dark" }}%%
20
+ ---
21
+ config:
22
+ theme: redux-dark-color
23
+ look: neo
24
+ ---
21
25
sequenceDiagram
22
- Action Client->>+Action Server: action_client.send_goal_async()
23
- Action Server-->>-Action Client: ActionClientNode.goal_response_callback()
24
- Action Client->>+Action Server: action_client.get_result_async()
25
- loop While action has not ended
26
- Action Server-->>Action Client: ActionClientNode.action_feedback_callback()
27
- end
28
- Action Server-->>-Action Client: ActionClientNode.action_result_callback()
26
+ participant Action Client as Action Client
27
+ participant Action Server as Action Server
28
+ autonumber
29
+ Action Client ->>+ Action Server: action_client.send_goal_async()
30
+ Action Server -->>- Action Client: ActionClientNode.goal_response_callback()
31
+ Action Client ->>+ Action Server: action_client.get_result_async()
32
+ loop While action has not ended
33
+ Action Server -->> Action Client: ActionClientNode.action_feedback_callback()
34
+ end
35
+ Action Server -->>- Action Client: ActionClientNode.action_result_callback()
29
36
30
37
#. Create the Node with an :code: `ActionClient `.
31
38
#. Update the :file: `setup.py ` so that :program: `ros2 run ` finds the node (if needed).
You can’t perform that action at this time.
0 commit comments