Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2a87bba

Browse files
authoredSep 18, 2024··
feat(matter): extend changes to other places
Based on the proposed changes, it extends those to other places of the documentation.
1 parent e26a153 commit 2a87bba

File tree

1 file changed

+21
-8
lines changed
  • idf_component_examples/esp_matter_light

1 file changed

+21
-8
lines changed
 

‎idf_component_examples/esp_matter_light/README.md

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,23 @@ The project will download all necessary components, including the Arduino Core.
6060
Run `idf.py SDKCONFIG_DEFAULTS="sdkconfig.defaults.<SOC>.idf" -p <PORT> flash monitor`
6161

6262
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+
```
6466
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+
```
6670

6771
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+
```
7080

7181
There is a configuration file for these SoC: esp32s3, esp32c3, esp32c6.
7282
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
8191
In order to build the application that will use Thread Networking instead of Wi-Fi, please execute:
8292

8393
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+
```
8597
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+
```
87101

88102
It may be necessary to delete some folders and files before running `idf.py`
89103
- Linux/macOS
@@ -92,6 +106,5 @@ It may be necessary to delete some folders and files before running `idf.py`
92106
```
93107
- Windows
94108
```
95-
rmdir /s/q build managed_components
96-
del sdkconfig dependencies.lock
109+
rmdir /s/q build managed_components && del sdkconfig dependencies.lock
97110
```

0 commit comments

Comments
 (0)
Please sign in to comment.