File tree 2 files changed +89
-2
lines changed
2 files changed +89
-2
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,12 @@ graph TD
10
10
VC[Vision Component]
11
11
GrC[GrSim Component]
12
12
GCC[Game Controller Component]
13
+ Receiver[Robot Receiver]
13
14
end
14
15
15
16
SC[Session Controller]
16
17
SS[Sim Sender]
17
18
18
-
19
-
20
19
VT[Vision Tracker]
21
20
WP[World Model Publisher]
22
21
@@ -48,5 +47,40 @@ graph TD
48
47
LP -- /robot_commands --> SS
49
48
SS -- /commands --> GrC
50
49
50
+ Receiver -- /feedback --> WP
51
+ ```
52
+
53
+ ## テスト用のノードダイアグラム
51
54
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
52
86
```
Original file line number Diff line number Diff line change
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
+ ```
You can’t perform that action at this time.
0 commit comments