forked from OpenInterpreter/01
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
59cd875
commit 1cd75dc
Showing
1 changed file
with
13 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
## ESP32 Setup | ||
|
||
To set up audio recording + playback on the ESP32 (M5 Atom), do the following: | ||
|
||
1. Open Arduino IDE, and open the client/client.ino file | ||
2. Go to Tools -> Board -> Boards Manager, search "esp32", then install the boards by Arduino and Espressif | ||
3. Go to Tools -> Manage Libraries, then install the following: | ||
|
||
- M5Atom by M5Stack [Reference](https://www.arduino.cc/reference/en/libraries/m5atom/) | ||
- WebSockets by Markus Sattler [Reference](https://www.arduino.cc/reference/en/libraries/websockets/) | ||
|
||
4. The board needs to connect to WiFi. Once you flash, connect to ESP32 wifi "captive" which will get wifi details. Once it connects, it will ask you to enter 01OS server address in the format "domain.com:port" or "ip:port". Once its able to connect you can use the device. | ||
5. To flash the .ino to the board, connect the board to the USB port, select the port from the dropdown on the IDE, then select the M5Atom board (or M5Stack-ATOM if you have that). Click on upload to flash the board. |