> For the complete documentation index, see [llms.txt](https://campus-rover.gitbook.io/lab-notebook/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://campus-rover.gitbook.io/lab-notebook/fiiva/infrastructure/turtlebot3s.md).

# Turtlebot3s.md

Download Image: [ROS Noetic Ubuntu 20.04](https://drive.google.com/file/d/1EGy9g5gE4kLXJk-oa_l-MDt5miUB33-r/view?usp=sharing)

## Instructions:

1. Flash the image into a microsd card using an imager (dd for linux, or RPiImager).
2. Connect the Turtlebot to a monitor and keyboard, insert the microsd card and turn on the bot.
3. Log into the turtlebot with the username: *ubuntu* and the password: *ROSlab134*
4. You will want to remove the tailscale information using the following commands:

   ```

   sudo apt-get remove tailscale
   sudo rm /var/lib/tailscale/tailscaled.state
   sudo nano /etc/hostname
   # change the hostname in this file from "roba" to your robot's name
   sudo reboot now
   ```
5. Once the turtlebot is rebooted, change the hostname and reinstall tailscale:

   ```

   sudo apt-get install tailscale
   sudo tailscale up --authkey=ask-pito-for-code
   ```
6. Now update the OpenCR board with the following commands:

   ```

   export OPENCR_PORT=/dev/ttyACM0
   export OPENCR_MODEL=burger_noetic # or waffle_noetic if you have a waffle tb3
   rm -rf ./opencr_update.tar.bz2
   wget https://github.com/ROBOTIS-GIT/OpenCR-Binaries/raw/master/turtlebot3/ROS1/latest/opencr_update.tar.bz2
   tar -xvf opencr_update.tar.bz2
   cd ./opencr_update
   ./update.sh $OPENCR_PORT $OPENCR_MODEL.opencr
   ```
7. Once the OpenCR board is updated, shut down your bot and turn it back on and you are done with the setup.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://campus-rover.gitbook.io/lab-notebook/fiiva/infrastructure/turtlebot3s.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
