--- title: "ESP32" description: "How to setup the ESP32" --- To set up the ESP32 for use with 01, follow this guide to install the firmware: 1. Download [Arduino IDE](https://www.arduino.cc/en/software). 2. Get the firmware by copying the contents of [client.ino](https://github.com/OpenInterpreter/01/blob/main/software/source/clients/esp32/src/client/client.ino) from the 01 repository.
Copy client.ino contents
3. Open Arduino IDE and paste the client.ino contents.
Paste client.ino contents Pasted client.ino contents
4. Hardcode your WiFi SSID, WiFi password, and server URL into the code.
Hardcode WiFi SSID and password
Hardcoding is recommended for a more streamlined setup and development environment. However, if you don't hardcode these values or if the ESP32 can't connect using the provided information, it will automatically default to a captive portal for configuration.
5. Go to Tools -> Board -> Boards Manager, search "esp32", then install the boards by Arduino and Espressif.
Install ESP32 boards
5. Go to Tools -> Manage Libraries, then install the following: - M5Atom by M5Stack ([Reference](https://www.arduino.cc/reference/en/libraries/m5atom/))
Install M5Atom library Install all M5Atom dependencies
- WebSockets by Markus Sattler ([Reference](https://www.arduino.cc/reference/en/libraries/websockets/))
Install WebSockets library
- AsyncTCP by dvarrel ([Reference](https://github.com/dvarrel/AsyncTCP))
Install AsyncTCP library
- ESPAsyncWebServer by lacamera ([Reference](https://github.com/lacamera/ESPAsyncWebServer))
Install ESPAsyncWebServer library Install all ESPAsyncWebServer dependencies
6. To flash the .ino to the board, connect the board to the USB port.
Connect USB
7. Select the port from the dropdown on the IDE, then select the M5Atom board (or M5Stack-ATOM if you have that).
Select Board and Port
8. Click on upload to flash the board.
Upload firmware
--- Watch this video from Thomas for a step-by-step guide on flashing the ESP32 and connecting the 01. [![ESP32 Flashing Tutorial](https://img.youtube.com/vi/Y76zed8nEE8/0.jpg)](https://www.youtube.com/watch?v=Y76zed8nEE8 "ESP32 Flashing Tutorial")