Skip to content

Commit f19b454

Browse files
committed
Update versions
1 parent 0c66b43 commit f19b454

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

docs/setup/01-install-os.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ toc: true
55

66
# Public image links
77
mbot_image_folder_link: https://www.dropbox.com/scl/fo/h1ls98wl462unh4vtx4q4/AKDVHv1hSEn8bLaRHfXAomM?rlkey=iwiip4kzogas9r01am4cafj9p&st=l0jlbi6l&dl=0
8-
mbot_base_rpi_os_link: https://www.dropbox.com/scl/fi/tyyslhj3fz7dd2y6267mp/2024-10-16-mbot-base-bookworm.img.gz?rlkey=4k3qe7knhqhabw4g17n9feukj&st=e6qx4gxb&dl=0
8+
mbot_base_rpi_os_link: https://www.dropbox.com/scl/fi/psz70s9ja5syyhhk82dv3/2024-11-20-mbot-base-bookworm.img.gz?rlkey=71fy1nf2hqf6s8fq2r81za9lk&st=syabrkuu&dl=0
99
mbot_full_classic_rpi_os_link: ""
1010
mbot_full_omni_rpi_os_link: https://www.dropbox.com/scl/fi/11c4q6zhhv6rpcvvm47sd/2024-08-22-mbot-full-omni-bookworm.img.gz?rlkey=7zrekoep72wvqpq0p9xj0xwcf&st=2ikaw15b&dl=0
1111

12-
last_modified_at: 2024-10-28
12+
last_modified_at: 2024-11-21
1313
---
1414

1515
To configure a new robot, you must first flash a new SD card with the robot's image.

docs/setup/03-calibration.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ title: "MBot Setup: Calibrating & Flashing"
44
toc: true
55

66
# Versions for the firmware.
7-
mbot_firmware_version: v1.1.0
8-
last_modified_at: 2024-10-28
7+
mbot_firmware_version: v1.2.0
8+
last_modified_at: 2024-11-21
99
---
1010

1111
Each robot needs to be individually calibrated in order to control it. Once it's calibrated, the firmware can be flashed onto the robot. You will need to flash programs onto the Pico to calibrate and load the firmware onto your robot.

docs/setup/new-image.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ title: "MBot Setup: Setting up a new image (Advanced)"
44
toc: true
55

66
# Versions for the code to checkout.
7-
lcm_base_version: v1.0.0
8-
firmware_version: v1.1.0
7+
lcm_base_version: v1.1.0
8+
firmware_version: v1.2.0
99
rplidar_version: 1.0.0
10-
web_app_version: v1.3.0
11-
lcm_monitor_version: v1.0.0
12-
mbot_bridge_version: v1.0.0
10+
web_app_version: v2.0.0
11+
lcm_monitor_version: v1.1.0
12+
mbot_bridge_version: v1.1.0
1313
mbot_autonomy_version: v1.1.0
1414

1515
# Public image links
16-
mbot_base_rpi_os_link: https://www.dropbox.com/scl/fi/tyyslhj3fz7dd2y6267mp/2024-10-16-mbot-base-bookworm.img.gz?rlkey=4k3qe7knhqhabw4g17n9feukj&st=e6qx4gxb&dl=0
17-
last_modified_at: 2024-11-04
16+
mbot_base_rpi_os_link: https://www.dropbox.com/scl/fi/psz70s9ja5syyhhk82dv3/2024-11-20-mbot-base-bookworm.img.gz?rlkey=71fy1nf2hqf6s8fq2r81za9lk&st=syabrkuu&dl=0
17+
last_modified_at: 2024-11-21
1818
---
1919

2020
**Students:** You should not need to set up an image from scratch! Check with your instructor for the link to the OS image for your class. Then, start the setup process by [installing the image](/docs/setup/01-install-os).
@@ -121,7 +121,15 @@ For this part, you should first [connect to your robot using VSCode](/docs/tutor
121121
./scripts/install.sh
122122
```
123123

124-
3. **Install the MBot Web App.** The web app is a useful tool for commanding the robot from your laptop's browser.
124+
3. **Install the MBot Bridge and API.** The MBot Bridge includes a server that bridges student code with the MBot software, as well as APIs in C++ and Python. Install it with:
125+
```bash
126+
cd ~/mbot_ws/mbot_bridge/
127+
git checkout {{ page.mbot_bridge_version }}
128+
./scripts/install.sh
129+
```
130+
This installs the scripts and services needed to run the MBot Bridge Server and installs the MBot API and its dependencies.
131+
132+
4. **Install the MBot Web App.** The web app is a useful tool for commanding the robot from your laptop's browser.
125133
1. Download the latest web app release and unpack it:
126134
```bash
127135
cd ~/mbot_ws/
@@ -143,21 +151,13 @@ For this part, you should first [connect to your robot using VSCode](/docs/tutor
143151
**Checkpoint:** The web app should now be available by going to your browser and typing in the robot's IP address.
144152
{: .notice--info}
145153
146-
4. **Install the RPLidar driver.** To install the Lidar driver, do:
154+
5. **Install the RPLidar driver.** To install the Lidar driver, do:
147155
```bash
148156
cd ~/mbot_ws/rplidar_lcm_driver/
149157
./scripts/install.sh
150158
```
151159
This will pull some code dependencies, compile and install the code, and install a service to start the driver on startup.
152160
153-
5. **Install the MBot Bridge and API.** The MBot Bridge includes a server that bridges student code with the MBot software, as well as APIs in C++ and Python. Install it with:
154-
```bash
155-
cd ~/mbot_ws/mbot_bridge/
156-
git checkout {{ page.mbot_bridge_version }}
157-
./scripts/install.sh
158-
```
159-
This installs the scripts and services needed to run the MBot Bridge Server and installs the MBot API and its dependencies.
160-
161161
6. **Optional: Install the LCM Monitor:** The web-based LCM monitor is a useful tool for viewing all the published LCM channels and their data in the browser. To install it:
162162
1. Download the latest release and unpack it:
163163
```bash

0 commit comments

Comments
 (0)