File tree 8 files changed +9
-9
lines changed
libraries/Matter/examples
8 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ void loop() {
128
128
// Onboard User Button is kept pressed for longer than 5 seconds in order to decommission matter node
129
129
uint32_t time_diff = millis () - button_time_stamp;
130
130
if (button_state && time_diff > decommissioningTimeout) {
131
- Serial.println (" Decommissioning the Light Matter Accessory. It shall be commissioned again." );
131
+ Serial.println (" Decommissioning the Composed Light Matter Accessory. It shall be commissioned again." );
132
132
Matter.decommission ();
133
133
button_time_stamp = millis (); // avoid running decommissining again, reboot takes a second or so
134
134
}
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ void loop() {
140
140
141
141
// Onboard User Button is kept pressed for longer than 5 seconds in order to decommission matter node
142
142
if (button_state && time_diff > decommissioningTimeout) {
143
- Serial.println (" Decommissioning the Generic Switch Matter Accessory. It shall be commissioned again." );
143
+ Serial.println (" Decommissioning Contact Sensor Matter Accessory. It shall be commissioned again." );
144
144
Matter.decommission ();
145
145
button_time_stamp = millis (); // avoid running decommissining again, reboot takes a second or so
146
146
}
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ void loop() {
180
180
181
181
// Onboard User Button is kept pressed for longer than 5 seconds in order to decommission matter node
182
182
if (button_state && time_diff > decommissioningTimeout) {
183
- Serial.println (" Decommissioning the Generic Switch Matter Accessory. It shall be commissioned again." );
183
+ Serial.println (" Decommissioning Fan Matter Accessory. It shall be commissioned again." );
184
184
Matter.decommission ();
185
185
button_time_stamp = millis (); // avoid running decommissining again, reboot takes a second or so
186
186
}
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ void loop() {
122
122
// Onboard User Button is kept pressed for longer than 5 seconds in order to decommission matter node
123
123
uint32_t time_diff = millis () - button_time_stamp;
124
124
if (button_state && time_diff > decommissioningTimeout) {
125
- Serial.println (" Decommissioning the Light Matter Accessory. It shall be commissioned again." );
125
+ Serial.println (" Decommissioning Humidity Sensor Matter Accessory. It shall be commissioned again." );
126
126
Matter.decommission ();
127
127
}
128
128
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ void loop() {
116
116
// Onboard User Button is kept pressed for longer than 5 seconds in order to decommission matter node
117
117
uint32_t time_diff = millis () - button_time_stamp;
118
118
if (button_state && time_diff > decommissioningTimeout) {
119
- Serial.println (" Decommissioning the Generic Switch Matter Accessory. It shall be commissioned again." );
119
+ Serial.println (" Decommissioning Occupancy Sensor Matter Accessory. It shall be commissioned again." );
120
120
Matter.decommission ();
121
121
button_time_stamp = millis (); // avoid running decommissining again, reboot takes a second or so
122
122
}
Original file line number Diff line number Diff line change @@ -122,8 +122,8 @@ void loop() {
122
122
// Onboard User Button is kept pressed for longer than 5 seconds in order to decommission matter node
123
123
uint32_t time_diff = millis () - button_time_stamp;
124
124
if (button_state && time_diff > decommissioningTimeout) {
125
- // Factory reset is triggered if the button is pressed longer than 10 seconds
126
- Serial.println (" Decommissioning the Light Matter Accessory. It shall be commissioned again." );
125
+ // Factory reset is triggered if the button is pressed longer than 5 seconds
126
+ Serial.println (" Decommissioning Pressure Sensor Matter Accessory. It shall be commissioned again." );
127
127
Matter.decommission ();
128
128
}
129
129
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ void loop() {
122
122
// Onboard User Button is kept pressed for longer than 5 seconds in order to decommission matter node
123
123
uint32_t time_diff = millis () - button_time_stamp;
124
124
if (button_state && time_diff > decommissioningTimeout) {
125
- Serial.println (" Decommissioning the Light Matter Accessory. It shall be commissioned again." );
125
+ Serial.println (" Decommissioning Temperature Sensor Matter Accessory. It shall be commissioned again." );
126
126
Matter.decommission ();
127
127
button_time_stamp = millis (); // avoid running decommissining again, reboot takes a second or so
128
128
}
Original file line number Diff line number Diff line change @@ -234,7 +234,7 @@ void loop() {
234
234
// Onboard User Button is kept pressed for longer than 5 seconds in order to decommission matter node
235
235
uint32_t time_diff = millis () - button_time_stamp;
236
236
if (button_state && time_diff > decommissioningTimeout) {
237
- Serial.println (" Decommissioning the Light Matter Accessory. It shall be commissioned again." );
237
+ Serial.println (" Decommissioning Thermostat Matter Accessory. It shall be commissioned again." );
238
238
Matter.decommission ();
239
239
button_time_stamp = millis (); // avoid running decommissining again, reboot takes a second or so
240
240
}
You can’t perform that action at this time.
0 commit comments