-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
HenryZhuHR
committed
Nov 20, 2023
1 parent
39fd94a
commit 942b785
Showing
8 changed files
with
29 additions
and
2 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
Submodule core
updated
from 8feb06 to 3eccd6
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
|
||
# 安装 | ||
|
||
## 树莓派 | ||
|
||
[Install Ubuntu on a Raspberry Pi](https://ubuntu.com/download/raspberry-pi) | ||
|
File renamed without changes.
File renamed without changes
1 change: 1 addition & 0 deletions
1
docs/core/controller/motion_controller.md → docs/modules/controller/motion_controller.md
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,6 +1,7 @@ | ||
# 运动控制管理器 | ||
|
||
|
||
|
||
## 调试记录 | ||
|
||
### 2023.08.24 | ||
|
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
根据 [Getting Started](https://navigation.ros.org/getting_started/index.html)安装,Nav2 和 [Turtlebot3](https://github.com/robotis-ros2-release/turtlebot3-release) | ||
```bash | ||
sudo apt install ros-humble-navigation2 | ||
sudo apt install ros-humble-nav2-bringup | ||
``` | ||
|
||
```bash | ||
sudo apt install ros-humble-turtlebot3-gazebo | ||
``` | ||
|
||
|
||
写入环境变量 | ||
|
||
```bash | ||
source /opt/ros/humble/setup.bash | ||
export TURTLEBOT3_MODEL=waffle | ||
export GAZEBO_MODEL_PATH=$GAZEBO_MODEL_PATH:/opt/ros/humble/share/turtlebot3_gazebo/models | ||
``` |