|
1 | 1 | ## Steps to install Arduino ESP32 support on Windows
|
2 | 2 | ### Tested on 32 and 64 bit Windows 10 machines
|
3 | 3 |
|
4 |
| -1. Download and install latest Arduino Windows Installer from [arduino.cc](https://www.arduino.cc/en/Main/Software) |
5 |
| -2. Download ```Windows x86 MSI installer``` or ```Windows x86-64 MSI installer``` from [python.org](https://www.python.org/downloads/release/python-2712/) |
6 |
| - When installing: |
| 4 | +1. Download and install the latest Arduino IDE ```Windows Installer``` from [arduino.cc](https://www.arduino.cc/en/Main/Software) |
| 5 | +2. Download ```Windows x86 MSI installer``` or ```Windows x86-64 MSI installer``` from [python.org](https://www.python.org/downloads/release/python-2712/). When installing: |
7 | 6 | - Install for all users
|
8 | 7 | - In ```Customize Python 2.7.X``` page, make sure you enable the last option: ```Add python.exe to Path```
|
9 |
| -  |
| 8 | +  |
10 | 9 | 3. Download and install Git from [git-scm.com](https://git-scm.com/download/win)
|
11 | 10 | 4. Start ```Git Bash``` as Administrator and execute the following command
|
12 |
| -```bash |
13 |
| -python -m pip install --upgrade pip && \ |
14 |
| -pip install pyserial |
15 |
| -``` |
16 |
| -  |
17 |
| -  |
18 | 11 |
|
| 12 | + ```bash |
| 13 | + python -m pip install --upgrade pip && \ |
| 14 | + pip install pyserial |
| 15 | + ``` |
| 16 | +  |
| 17 | +  |
19 | 18 | 5. Start ```Git Bash``` normally and execute the following command
|
20 |
| -```bash |
21 |
| -mkdir -p ~/Documents/Arduino/hardware/espressif && \ |
22 |
| -cd ~/Documents/Arduino/hardware/espressif && \ |
23 |
| -git clone https://github.com/espressif/arduino-esp32.git esp32 && \ |
24 |
| -cd esp32/tools/ && \ |
25 |
| -python get.py |
26 |
| -``` |
27 |
| -  |
28 |
| - |
| 19 | + |
| 20 | + ```bash |
| 21 | + mkdir -p ~/Documents/Arduino/hardware/espressif && \ |
| 22 | + cd ~/Documents/Arduino/hardware/espressif && \ |
| 23 | + git clone https://github.com/espressif/arduino-esp32.git esp32 && \ |
| 24 | + cd esp32/tools/ && \ |
| 25 | + python get.py |
| 26 | + ``` |
| 27 | +  |
29 | 28 | 6. Plug your ESP32 board and wait for the drivers to install (or install manually any that might be required)
|
30 | 29 | 7. Start Arduino IDE
|
31 | 30 | 8. Select your board in ```Tools > Board``` menu
|
32 | 31 | 9. Select the COM port that the board is attached to
|
33 |
| -10. Compile and upload |
34 |
| -  |
| 32 | +10. Compile and upload (You might need to hold the boot button while uploading) |
| 33 | + |
| 34 | +  |
0 commit comments