-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from clubcapra/update-documentation
improve documentation
- Loading branch information
Showing
3 changed files
with
90 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,61 @@ | ||
@startuml | ||
package "Rove Interface" { | ||
|
||
folder "Rove" as rove { | ||
[gazebo] | ||
[hardware] | ||
[slam] | ||
[navigation] | ||
[description] | ||
[bringup] | ||
[control] | ||
[nlp] | ||
} | ||
|
||
package "Rove control" as control { | ||
[control.launch.py] | ||
[teleop.launch.py] | ||
[keyboard.launch.py] | ||
[joy.launch.py] | ||
} | ||
|
||
package "Natural Language Processing" as nlp { | ||
[capra_gpt.launch.py] | ||
[web_server.launch.py] | ||
[local_chat.launch.py] | ||
} | ||
|
||
package "Rove Navigation" { | ||
package "Rove hardware" as hardware { | ||
[camera.launch.py] | ||
[imu.launch.py] | ||
[lidar.launch.py] | ||
[flipper.launch.py] | ||
[track.launch.py] | ||
node "motor controller" as motor { | ||
} | ||
} | ||
|
||
package "Rove SLAM" { | ||
package "Rove description" as description { | ||
[description.launch.py] | ||
} | ||
|
||
package "Rove Vision" { | ||
package "Rove Gazebo" as gazebo { | ||
[sim.launch.py] | ||
} | ||
|
||
package "Rove Hardware Interface" { | ||
package "Rove Bringup" as bringup { | ||
[rove.launch.py] | ||
[base.launch.py] | ||
[top.launch.py] | ||
} | ||
|
||
package "Rove Navigation" as navigation { | ||
[nav2.launch.py] | ||
} | ||
|
||
package "Rove SLAM" as slam { | ||
[slam.launch.py] | ||
[ekf.launch.py] | ||
[slam_3d.launch.py] | ||
} | ||
|
||
@enduml |