> For the complete documentation index, see [llms.txt](https://guide.petoi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://guide.petoi.com/arduino-ide/install-arduino-ide-on-chromebook/biboard.md).

# BiBoard

After using the USB data cable to connect the BiBoard and Chromebook, you will see a prompt: Please click ***Connect to Linux*****.**

<figure><img src="https://content.gitbook.com/content/XLpFdG7mubqEHWylLK3w/blobs/Gaa9lwIoXb3wLyvnbVyN/image.png" alt=""><figcaption></figcaption></figure>

and check in the **Settings** interface, and it should be enabled as follows:

<figure><img src="https://content.gitbook.com/content/XLpFdG7mubqEHWylLK3w/blobs/sH3QzY2phu6RYqV8fCA9/image.png" alt=""><figcaption></figcaption></figure>

<figure><img src="https://content.gitbook.com/content/XLpFdG7mubqEHWylLK3w/blobs/oKsyxyKo0jJKt69uaqFi/image.png" alt=""><figcaption></figcaption></figure>

Use the following commands to install the library pyserial for uploading the sketch for BiBoard

```
sudo apt install python3 pip
python3 -V
pip -V
cd /usr/lib/python3.11/
sudo rm EXTERNALLY-MANAGED
sudo pip3 install pyserial
pip list
```

{% hint style="info" %}
After downloading the project file **OpenCatEsp32-main.zip** from GitHub: <https://github.com/PetoiCamp/OpenCatEsp32>, use the following commands to unzip it to the ***Downloads*** folder.

<pre><code><strong>cd /mnt/chromeos/MyFiles/Downloads/
</strong>sudo apt-get install unzip
unzip OpenCatEsp32-main.zip
</code></pre>

{% endhint %}

For how to upload the sketch, please refer to [Upload Sketch for BiBoard](https://guide.petoi.com/arduino-ide/upload-sketch-for-biboard).


---

# 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://guide.petoi.com/arduino-ide/install-arduino-ide-on-chromebook/biboard.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.
