@@ -74,17 +74,27 @@ Those are the tested devices that have a WS2812 RGB LED and can run BLE, Wi-Fi a
74
74
In case it is necessary to change the Button Pin or the REG LED Pin, please use the ` menuconfig `
75
75
` idf.py menuconfig ` and change the Menu Option ` Light Matter Accessory `
76
76
77
- ## Using OpenThread with Matter
77
+ ## Building the Application using OpenThread and Matter
78
78
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.
81
81
In order to build the application that will use Thread Networking instead of Wi-Fi, please execute:
82
82
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
+ ```
87
91
88
92
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