You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Need help or have a question? Join the chat at [Gitter](https://gitter.im/espressif/arduino-esp32) or [open a new Discussion](https://github.com/espressif/arduino-esp32/discussions)
* How to install the Arduino IDE: [Install Arduino IDE](https://github.com/espressif/arduino-esp32/tree/master/docs/arduino-ide).
15
+
16
+
#### Using Arduino IDE
17
+
18
+
* Before Compile/Verify, select the correct board: `Tools -> Board`.
19
+
* Select the COM port: `Tools -> Port: xxx` where the `xxx` is the detected COM port.
20
+
21
+
#### Using Platform IO
22
+
23
+
* Select the COM port: `Devices` or setting the `upload_port` option on the `platformio.ini` file.
24
+
25
+
## Example/Log Output
26
+
27
+
```
28
+
Setup done
29
+
Scan start
30
+
Scan done, elapsed time: 4960 ms
31
+
17 networks found
32
+
Nr | SSID | RSSI | CH | Encryption
33
+
1 | IoTNetwork | -62 | 1 | WPA2
34
+
2 | WiFiSSID | -62 | 1 | WPA2-EAP
35
+
3 | B3A7992 | -63 | 6 | WPA+WPA2
36
+
4 | WiFi | -63 | 6 | WPA3
37
+
5 | IoTNetwork2 | -64 | 11 | WPA2+WPA3
38
+
...
39
+
```
40
+
41
+
## Troubleshooting
42
+
43
+
***Important: Be sure you're using a good quality USB cable and you have enough power source for your project.***
44
+
45
+
***Programming Fail:** If the programming/flash procedure fails, try to reduce the serial connection speed.
46
+
***COM port not detected:** Check the USB cable connection and the USB to Serial driver installation.
47
+
48
+
If the error persists, you can ask for help at the official [ESP32 forum](https://esp32.com) or see [Contribute](#contribute).
49
+
50
+
## Contribute
51
+
52
+
To know how to contribute to this project, see [How to contribute.](https://github.com/espressif/arduino-esp32/blob/master/CONTRIBUTING.rst)
53
+
54
+
If you have any **feedback** or **issue** to report on this example/library, please open an issue or fix it by creating a new PR. Contributions are more than welcome!
55
+
56
+
Before creating a new issue, be sure to try the Troubleshooting and to check if the same issue was already created by someone else.
57
+
58
+
## Resources
59
+
60
+
* Arduino-ESP32 Official Repository: [espressif/arduino-esp32](https://github.com/espressif/arduino-esp32)
61
+
* ESP32 Datasheet: [Link to datasheet](https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf)
62
+
* ESP32-S2 Datasheet: [Link to datasheet](https://www.espressif.com/sites/default/files/documentation/esp32-s2_datasheet_en.pdf)
63
+
* ESP32-C3 Datasheet: [Link to datasheet](https://www.espressif.com/sites/default/files/documentation/esp32-c3_datasheet_en.pdf)
64
+
* ESP32-C6 Datasheet: [Link to datasheet](https://www.espressif.com/sites/default/files/documentation/esp32-c6_datasheet_en.pdf)
65
+
* Official ESP-IDF documentation: [ESP-IDF](https://idf.espressif.com)
0 commit comments