You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
993 B
13 lines
993 B
1 year ago
|
# ESP32 Playback
|
||
|
|
||
|
To set up audio recording + playback on the ESP32 (M5 Atom), do the following:
|
||
|
|
||
1 year ago
|
1. Open Arduino IDE, and open the `client/client.ino` file
|
||
1 year ago
|
2. Go to Tools -> Board -> Boards Manager, search "esp32", then install the boards by Arduino and Espressif
|
||
1 year ago
|
3. Go to Tools -> Manage Libraries, then install the following (_with_ dependencies, if it prompts you to install with/without dependencies):
|
||
1 year ago
|
- M5Atom by M5Stack
|
||
|
- WebSockets by Markus Sattler
|
||
1 year ago
|
- ESPAsyncWebServer by lacamera
|
||
1 year ago
|
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.
|
||
1 year ago
|
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.
|