@@ -60,13 +60,23 @@ The project will download all necessary components, including the Arduino Core.
60
60
Run ` idf.py SDKCONFIG_DEFAULTS="sdkconfig.defaults.<SOC>.idf" -p <PORT> flash monitor `
61
61
62
62
Example for ESP32-S3/Linux | macOS:
63
- ` idf.py SDKCONFIG_DEFAULTS="sdkconfig.defaults.esp32s3" -p /dev/ttyACM0 flash monitor `
63
+ ```
64
+ idf.py SDKCONFIG_DEFAULTS="sdkconfig.defaults.esp32s3" -p /dev/ttyACM0 flash monitor
65
+ ```
64
66
Example for ESP32-C3/Windows:
65
- ` idf.py -D SDKCONFIG_DEFAULTS="sdkconfig.defaults.esp32c3" -p com3 flash monitor `
67
+ ```
68
+ idf.py -D SDKCONFIG_DEFAULTS="sdkconfig.defaults.esp32c3" -p com3 flash monitor`
69
+ ```
66
70
67
71
It may be necessary to delete some folders and files before running ` idf.py `
68
- Linux/macOS: ` rm -rf build managed_components sdkconfig dependencies.lock `
69
- Windows: ` rmdir /s/q build managed_components ` and ` del sdkconfig dependencies.lock `
72
+ - Linux/macOS:
73
+ ```
74
+ rm -rf build managed_components sdkconfig dependencies.lock`
75
+ ```
76
+ - Windows:
77
+ ```
78
+ rmdir /s/q build managed_components && del sdkconfig dependencies.lock
79
+ ```
70
80
71
81
There is a configuration file for these SoC: esp32s3, esp32c3, esp32c6.
72
82
Those are the tested devices that have a WS2812 RGB LED and can run BLE, Wi-Fi and Matter.
@@ -81,9 +91,13 @@ It is necessary to have a Thread Border Router in the Matter Environment. Check
81
91
In order to build the application that will use Thread Networking instead of Wi-Fi, please execute:
82
92
83
93
Example for ESP32-C6/Linux | macOS:
84
- ` idf.py SDKCONFIG_DEFAULTS="sdkconfig.defaults.c6_thread" -p /dev/ttyACM0 flash monitor `
94
+ ```
95
+ idf.py SDKCONFIG_DEFAULTS="sdkconfig.defaults.c6_thread" -p /dev/ttyACM0 flash monitor
96
+ ```
85
97
Example for ESP32-C6/Windows:
86
- ` idf.py -D SDKCONFIG_DEFAULTS="sdkconfig.defaults.c6_thread" -p com3 flash monitor `
98
+ ```
99
+ idf.py -D SDKCONFIG_DEFAULTS="sdkconfig.defaults.c6_thread" -p com3 flash monitor
100
+ ```
87
101
88
102
It may be necessary to delete some folders and files before running ` idf.py `
89
103
- Linux/macOS
@@ -92,6 +106,5 @@ It may be necessary to delete some folders and files before running `idf.py`
92
106
```
93
107
- Windows
94
108
```
95
- rmdir /s/q build managed_components
96
- del sdkconfig dependencies.lock
109
+ rmdir /s/q build managed_components && del sdkconfig dependencies.lock
97
110
```
0 commit comments