Skip to content

Commit dc56279

Browse files
committed
🔄 synced local 'docs' with remote 'docs'
1 parent 445d21c commit dc56279

File tree

2 files changed

+89
-2
lines changed

2 files changed

+89
-2
lines changed

docs/diagram.md

+36-2
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@ graph TD
1010
VC[Vision Component]
1111
GrC[GrSim Component]
1212
GCC[Game Controller Component]
13+
Receiver[Robot Receiver]
1314
end
1415
1516
SC[Session Controller]
1617
SS[Sim Sender]
1718
18-
19-
2019
VT[Vision Tracker]
2120
WP[World Model Publisher]
2221
@@ -48,5 +47,40 @@ graph TD
4847
LP -- /robot_commands --> SS
4948
SS -- /commands --> GrC
5049
50+
Receiver -- /feedback --> WP
51+
```
52+
53+
## テスト用のノードダイアグラム
5154

55+
```mermaid
56+
graph TD
57+
subgraph interface
58+
VisionNode[Vision Component]
59+
Sender[Real Sender]
60+
Receiver[Robot Receiver]
61+
end
62+
63+
VT[Vision Tracker]
64+
WP[World Model Publisher]
65+
Main[Simple AI]
66+
LP[Local Planner]
67+
68+
subgraph RealWorld
69+
Robot[Actual Robot CM4]
70+
SSLVision[SSL Vision]
71+
end
72+
73+
SSLVision -. UDP .-> VisionNode
74+
VisionNode -- /detection --> VT
75+
VT -- /detection_tracked --> WP
76+
VisionNode -- /geometry --> WP
77+
78+
WP -- /world_model --> Main
79+
Main -- /control_targets --> LP
80+
LP -- /robot_commands --> Sender
81+
82+
Sender -. UDP .-> Robot
83+
84+
Robot -. UDP .-> Receiver
85+
Receiver -- /feedback --> WP
5286
```

docs/simple_ai.md

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Simple AI
2+
3+
## 使い方
4+
5+
- ロボットの設定
6+
- IDを指定
7+
- コマンドの追加
8+
- プルダウンでコマンドの種類を選ぶ
9+
- 引数を設定する
10+
- 追加ボタンを押す
11+
- コマンドキューの編集
12+
- コマンドキューの中身を選択する
13+
- 編集できる
14+
- 実行中は編集できなくなる
15+
- コマンドキューの実行
16+
- 実行ボタンを押す
17+
- 実行中は停止ボタンになる
18+
- コマンドは上から順に実行される
19+
20+
## ノードダイアグラム
21+
22+
```mermaid
23+
graph TD
24+
subgraph interface
25+
VisionNode[Vision Component]
26+
Sender[Real Sender]
27+
Receiver[Robot Receiver]
28+
end
29+
30+
VT[Vision Tracker]
31+
WP[World Model Publisher]
32+
Main[Simple AI]
33+
LP[Local Planner]
34+
35+
subgraph RealWorld
36+
Robot[Actual Robot CM4]
37+
SSLVision[SSL Vision]
38+
end
39+
40+
SSLVision -. UDP .-> VisionNode
41+
VisionNode -- /detection --> VT
42+
VT -- /detection_tracked --> WP
43+
VisionNode -- /geometry --> WP
44+
45+
WP -- /world_model --> Main
46+
Main -- /control_targets --> LP
47+
LP -- /robot_commands --> Sender
48+
49+
Sender -. UDP .-> Robot
50+
51+
Robot -. UDP .-> Receiver
52+
Receiver -- /feedback --> WP
53+
```

0 commit comments

Comments
 (0)