来源: 我用OpenGlass做了一个AI眼镜【更新中】 | Rocket Lu
最近看见了一个开源眼镜的代码,而且需要的硬件只要100块左右,于是准备复刻一个。
准备工作
需要的硬件是一个芯片、一个电池、一个3D打印的外壳。
硬件拿到手后,可以开始软件工作了。
01 下载Arduino IDE
我在整合包里准备好了,大家可以直接回复“Glass”下载
02 下载Arduino IDE
打开 firmware folder 文件夹并在 Arduino IDE 中打开
.ino
文件。按照软件准备步骤为 XIAO ESP32S3 板设置 Arduino IDE:
-
- 将 ESP32 板 添加到您的 Arduino IDE:
- Navigate to File > Preferences, and fill “Additional Boards Manager URLs” with the URL:
https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
- Navigate to File > Preferences, and fill “Additional Boards Manager URLs” with the URL:
- 将 ESP32 板 添加到您的 Arduino IDE:
导航到“文件”>“首选项”,然后使用以下 URL 填写“其他 Boards Manager URL”:
https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
-
-
- Navigate to Tools > Board > Boards Manager…, type the keyword
esp32
in the search box, select the latest version ofesp32
, and install it.
- Navigate to Tools > Board > Boards Manager…, type the keyword
-
导航到“工具”>“开发板”>“开发板管理器…”,在搜索框中输入关键字
esp32
,选择最新版本的 esp32
并安装它。-
- Select your board and port:
选择您的主板和端口:
-
-
- On top of the Arduino IDE, select the port (likely to be COM3 or higher).
-
在 Arduino IDE 顶部,选择端口(可能是 COM3 或更高端口)。
-
-
- Search for
xiao
in the development board on the left and selectXIAO_ESP32S3
.
- Search for
-
在左侧开发板中搜索
xiao
并选择 XIAO_ESP32S3
。