Skip to content

Commit 0e95248

Browse files
authored
Update Matter Light README.md
Update Matter Light README.md
1 parent 7018cd1 commit 0e95248

File tree

1 file changed

+19
-9
lines changed
  • idf_component_examples/esp_matter_light

1 file changed

+19
-9
lines changed

idf_component_examples/esp_matter_light/README.md

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -74,17 +74,27 @@ Those are the tested devices that have a WS2812 RGB LED and can run BLE, Wi-Fi a
7474
In case it is necessary to change the Button Pin or the REG LED Pin, please use the `menuconfig`
7575
`idf.py menuconfig` and change the Menu Option `Light Matter Accessory`
7676

77-
## Using OpenThread with Matter
77+
## Building the Application using OpenThread and Matter
7878

79-
This is possible with the ESP32-C6.
80-
It is neessasy to have a Thread Border Routed in the Matter Environment. Check you matter hardware provider.
79+
This is possible with the ESP32-C6.
80+
It is necessary to have a Thread Border Router in the Matter Environment. Check your Matter hardware provider.
8181
In order to build the application that will use Thread Networking instead of Wi-Fi, please execute:
8282

83-
Example for ESP32-S3/Linux | macOS:
84-
`idf.py SDKCONFIG_DEFAULTS="sdkconfig.defaults.c6_thread" -p /dev/ttyACM0 flash monitor`
85-
Example for ESP32-C3/Windows:
86-
`idf.py -D SDKCONFIG_DEFAULTS="sdkconfig.defaults.c6_thread" -p com3 flash monitor`
83+
Example for ESP32-C6/Linux | macOS:
84+
```
85+
idf.py SDKCONFIG_DEFAULTS="sdkconfig.defaults.c6_thread" -p /dev/ttyACM0 flash monitor
86+
```
87+
Example for ESP32-C6/Windows:
88+
```
89+
idf.py -D SDKCONFIG_DEFAULTS="sdkconfig.defaults.c6_thread" -p com3 flash monitor
90+
```
8791

8892
It may be necessary to delete some folders and files before running `idf.py`
89-
Linux/macOS: `rm -rf build managed_components sdkconfig dependencies.lock`
90-
Windows: `rmdir /s/q build managed_components` and `del sdkconfig dependencies.lock`
93+
- Linux/macOS
94+
```
95+
rm -rf build managed_components sdkconfig dependencies.lock
96+
```
97+
- Windows
98+
```
99+
rmdir /s/q build managed_components && del sdkconfig dependencies.lock
100+
```

0 commit comments

Comments
 (0)