Skip to content

Commit 3d18b86

Browse files
committed
feat(matter): adds ESP32-C5 to supported list and fixes typos
1 parent b8f0b5e commit 3d18b86

File tree

26 files changed

+1078
-5
lines changed

26 files changed

+1078
-5
lines changed

libraries/Matter/examples/MatterColorLight/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ The application showcases Matter commissioning, device control via smart home ec
1111
| ESP32-S2 |||| Required | Fully supported |
1212
| ESP32-S3 |||| Required | Fully supported |
1313
| ESP32-C3 |||| Required | Fully supported |
14+
| ESP32-C5 |||| Required | Fully supported |
1415
| ESP32-C6 |||| Required | Fully supported |
1516
| ESP32-H2 |||| Required | Supported (Thread only) |
1617

1718
### Note on Commissioning:
1819

1920
- **ESP32 & ESP32-S2** do not support commissioning over Bluetooth LE. For these chips, you must provide WiFi credentials directly in the sketch code so they can connect to your network manually.
2021
- **ESP32-C6** Although it has Thread support, the ESP32 Arduino Matter Library has been pre compiled using WiFi only. In order to configure it for Thread-only operation it is necessary to build the project as an ESP-IDF component and to disable the Matter WiFi station feature.
22+
- **ESP32-C5** Although it has Thread support, the ESP32 Arduino Matter Library has been pre compiled using WiFi only. In order to configure it for Thread-only operation it is necessary to build the project as an ESP-IDF component and to disable the Matter WiFi station feature.
2123

2224
## Features
2325

@@ -47,7 +49,7 @@ The application showcases Matter commissioning, device control via smart home ec
4749

4850
1. Install the Arduino IDE (2.0 or newer recommended)
4951
2. Install ESP32 Arduino Core with Matter support
50-
3. Install required libraries:
52+
3. ESP32 Arduino libraries:
5153
- `Matter`
5254
- `Preferences`
5355
- `WiFi` (only for ESP32 and ESP32-S2)
@@ -81,7 +83,7 @@ Before uploading the sketch, configure the following:
8183

8284
## Expected Output
8385

84-
Once the sketch is running, open the Serial Monitor at a baud rate of **115200**. You should see output similar to the following, which provides the necessary information for commissioning:
86+
Once the sketch is running, open the Serial Monitor at a baud rate of **115200**. The WiFi connection messages will be displayed only for ESP32 and ESP32-S2. Other targets will use Matter CHIPoBLE to automatically setup the IP Network. You should see output similar to the following, which provides the necessary information for commissioning:
8587

8688
```
8789
Connecting to your-wifi-ssid

libraries/Matter/examples/MatterCommissionTest/MatterCommissionTest.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,5 @@ void loop() {
7777
Serial.println("====> Decommissioning in 30 seconds. <====");
7878
delay(30000);
7979
Matter.decommission();
80-
Serial.println("Matter Node is decommissioned. Commsssioning widget shall start over.");
80+
Serial.println("Matter Node is decommissioned. Commisssioning widget shall start over.");
8181
}

libraries/Matter/examples/MatterCommissionTest/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ The application showcases Matter commissioning, device connection to smart home
1111
| ESP32-S2 |||| Fully supported |
1212
| ESP32-S3 |||| Fully supported |
1313
| ESP32-C3 |||| Fully supported |
14+
| ESP32-C5 |||| Fully supported |
1415
| ESP32-C6 |||| Fully supported |
1516
| ESP32-H2 |||| Supported (Thread only) |
1617

1718
### Note on Commissioning:
1819

1920
- **ESP32 & ESP32-S2** do not support commissioning over Bluetooth LE. For these chips, you must provide WiFi credentials directly in the sketch code so they can connect to your network manually.
2021
- **ESP32-C6** Although it has Thread support, the ESP32 Arduino Matter Library has been pre compiled using WiFi only. In order to configure it for Thread-only operation it is necessary to build the project as an ESP-IDF component and to disable the Matter WiFi station feature.
22+
- **ESP32-C5** Although it has Thread support, the ESP32 Arduino Matter Library has been pre compiled using WiFi only. In order to configure it for Thread-only operation it is necessary to build the project as an ESP-IDF component and to disable the Matter WiFi station feature.
2123

2224
## Features
2325

@@ -80,7 +82,7 @@ Matter Fabric not commissioned yet. Waiting for commissioning.
8082
...
8183
Matter Node is commissioned and connected to the network.
8284
====> Decommissioning in 30 seconds. <====
83-
Matter Node is decommissioned. Commsssioning widget shall start over.
85+
Matter Node is decommissioned. Commisssioning widget shall start over.
8486
8587
Matter Node is not commissioned yet.
8688
Initiate the device discovery in your Matter environment.

libraries/Matter/examples/MatterComposedLights/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ The application showcases Matter commissioning, a single Matter node containing
1111
| ESP32-S2 |||| Fully supported |
1212
| ESP32-S3 |||| Fully supported |
1313
| ESP32-C3 |||| Fully supported |
14+
| ESP32-C5 |||| Fully supported |
1415
| ESP32-C6 |||| Fully supported |
1516
| ESP32-H2 |||| Supported (Thread only) |
1617

1718
### Note on Commissioning:
1819

1920
- **ESP32 & ESP32-S2** do not support commissioning over Bluetooth LE. For these chips, you must provide WiFi credentials directly in the sketch code so they can connect to your network manually.
2021
- **ESP32-C6** Although it has Thread support, the ESP32 Arduino Matter Library has been pre compiled using WiFi only. In order to configure it for Thread-only operation it is necessary to build the project as an ESP-IDF component and to disable the Matter WiFi station feature.
22+
- **ESP32-C5** Although it has Thread support, the ESP32 Arduino Matter Library has been pre compiled using WiFi only. In order to configure it for Thread-only operation it is necessary to build the project as an ESP-IDF component and to disable the Matter WiFi station feature.
2123

2224
## Features
2325

libraries/Matter/examples/MatterContactSensor/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ The application showcases Matter commissioning, device control via smart home ec
1111
| ESP32-S2 |||| Required | Fully supported |
1212
| ESP32-S3 |||| Required | Fully supported |
1313
| ESP32-C3 |||| Required | Fully supported |
14+
| ESP32-C5 |||| Required | Fully supported |
1415
| ESP32-C6 |||| Required | Fully supported |
1516
| ESP32-H2 |||| Required | Supported (Thread only) |
1617

1718
### Note on Commissioning:
1819

1920
- **ESP32 & ESP32-S2** do not support commissioning over Bluetooth LE. For these chips, you must provide WiFi credentials directly in the sketch code so they can connect to your network manually.
2021
- **ESP32-C6** Although it has Thread support, the ESP32 Arduino Matter Library has been pre compiled using WiFi only. In order to configure it for Thread-only operation it is necessary to build the project as an ESP-IDF component and to disable the Matter WiFi station feature.
22+
- **ESP32-C5** Although it has Thread support, the ESP32 Arduino Matter Library has been pre compiled using WiFi only. In order to configure it for Thread-only operation it is necessary to build the project as an ESP-IDF component and to disable the Matter WiFi station feature.
2123

2224
## Features
2325

libraries/Matter/examples/MatterDimmableLight/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ The application showcases Matter commissioning, device control via smart home ec
1111
| ESP32-S2 |||| Required | Fully supported |
1212
| ESP32-S3 |||| Required | Fully supported |
1313
| ESP32-C3 |||| Required | Fully supported |
14+
| ESP32-C5 |||| Required | Fully supported |
1415
| ESP32-C6 |||| Required | Fully supported |
1516
| ESP32-H2 |||| Required | Supported (Thread only) |
1617

1718
### Note on Commissioning:
1819

1920
- **ESP32 & ESP32-S2** do not support commissioning over Bluetooth LE. For these chips, you must provide WiFi credentials directly in the sketch code so they can connect to your network manually.
2021
- **ESP32-C6** Although it has Thread support, the ESP32 Arduino Matter Library has been pre compiled using WiFi only. In order to configure it for Thread-only operation it is necessary to build the project as an ESP-IDF component and to disable the Matter WiFi station feature.
22+
- **ESP32-C5** Although it has Thread support, the ESP32 Arduino Matter Library has been pre compiled using WiFi only. In order to configure it for Thread-only operation it is necessary to build the project as an ESP-IDF component and to disable the Matter WiFi station feature.
2123

2224
## Features
2325

libraries/Matter/examples/MatterEnhancedColorLight/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ The application showcases Matter commissioning, device control via smart home ec
1111
| ESP32-S2 |||| Required | Fully supported |
1212
| ESP32-S3 |||| Required | Fully supported |
1313
| ESP32-C3 |||| Required | Fully supported |
14+
| ESP32-C5 |||| Required | Fully supported |
1415
| ESP32-C6 |||| Required | Fully supported |
1516
| ESP32-H2 |||| Required | Supported (Thread only) |
1617

1718
### Note on Commissioning:
1819

1920
- **ESP32 & ESP32-S2** do not support commissioning over Bluetooth LE. For these chips, you must provide WiFi credentials directly in the sketch code so they can connect to your network manually.
2021
- **ESP32-C6** Although it has Thread support, the ESP32 Arduino Matter Library has been pre compiled using WiFi only. In order to configure it for Thread-only operation it is necessary to build the project as an ESP-IDF component and to disable the Matter WiFi station feature.
22+
- **ESP32-C5** Although it has Thread support, the ESP32 Arduino Matter Library has been pre compiled using WiFi only. In order to configure it for Thread-only operation it is necessary to build the project as an ESP-IDF component and to disable the Matter WiFi station feature.
2123

2224
## Features
2325

libraries/Matter/examples/MatterEvents/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ The application showcases Matter event handling, commissioning, and automatic de
1111
| ESP32-S2 |||| Fully supported |
1212
| ESP32-S3 |||| Fully supported |
1313
| ESP32-C3 |||| Fully supported |
14+
| ESP32-C5 |||| Fully supported |
1415
| ESP32-C6 |||| Fully supported |
1516
| ESP32-H2 |||| Supported (Thread only) |
1617

1718
### Note on Commissioning:
1819

1920
- **ESP32 & ESP32-S2** do not support commissioning over Bluetooth LE. For these chips, you must provide WiFi credentials directly in the sketch code so they can connect to your network manually.
2021
- **ESP32-C6** Although it has Thread support, the ESP32 Arduino Matter Library has been pre compiled using WiFi only. In order to configure it for Thread-only operation it is necessary to build the project as an ESP-IDF component and to disable the Matter WiFi station feature.
22+
- **ESP32-C5** Although it has Thread support, the ESP32 Arduino Matter Library has been pre compiled using WiFi only. In order to configure it for Thread-only operation it is necessary to build the project as an ESP-IDF component and to disable the Matter WiFi station feature.
2123

2224
## Features
2325

libraries/Matter/examples/MatterFan/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ The application showcases Matter commissioning, device control via smart home ec
1111
| ESP32-S2 |||| Required | Fully supported |
1212
| ESP32-S3 |||| Required | Fully supported |
1313
| ESP32-C3 |||| Required | Fully supported |
14+
| ESP32-C5 |||| Required | Fully supported |
1415
| ESP32-C6 |||| Required | Fully supported |
1516
| ESP32-H2 |||| Required | Supported (Thread only) |
1617

1718
### Note on Commissioning:
1819

1920
- **ESP32 & ESP32-S2** do not support commissioning over Bluetooth LE. For these chips, you must provide WiFi credentials directly in the sketch code so they can connect to your network manually.
2021
- **ESP32-C6** Although it has Thread support, the ESP32 Arduino Matter Library has been pre compiled using WiFi only. In order to configure it for Thread-only operation it is necessary to build the project as an ESP-IDF component and to disable the Matter WiFi station feature.
22+
- **ESP32-C5** Although it has Thread support, the ESP32 Arduino Matter Library has been pre compiled using WiFi only. In order to configure it for Thread-only operation it is necessary to build the project as an ESP-IDF component and to disable the Matter WiFi station feature.
2123

2224
## Features
2325

libraries/Matter/examples/MatterHumiditySensor/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ The application showcases Matter commissioning, sensor data reporting to smart h
1111
| ESP32-S2 |||| Fully supported |
1212
| ESP32-S3 |||| Fully supported |
1313
| ESP32-C3 |||| Fully supported |
14+
| ESP32-C5 |||| Fully supported |
1415
| ESP32-C6 |||| Fully supported |
1516
| ESP32-H2 |||| Supported (Thread only) |
1617

1718
### Note on Commissioning:
1819

1920
- **ESP32 & ESP32-S2** do not support commissioning over Bluetooth LE. For these chips, you must provide WiFi credentials directly in the sketch code so they can connect to your network manually.
2021
- **ESP32-C6** Although it has Thread support, the ESP32 Arduino Matter Library has been pre compiled using WiFi only. In order to configure it for Thread-only operation it is necessary to build the project as an ESP-IDF component and to disable the Matter WiFi station feature.
22+
- **ESP32-C5** Although it has Thread support, the ESP32 Arduino Matter Library has been pre compiled using WiFi only. In order to configure it for Thread-only operation it is necessary to build the project as an ESP-IDF component and to disable the Matter WiFi station feature.
2123

2224
## Features
2325

0 commit comments

Comments
 (0)