We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4714c4e commit b31e214Copy full SHA for b31e214
libraries/Matter/examples/MatterComposedLights/MatterComposedLights.ino
@@ -128,7 +128,7 @@ void loop() {
128
// Onboard User Button is kept pressed for longer than 5 seconds in order to decommission matter node
129
uint32_t time_diff = millis() - button_time_stamp;
130
if (button_state && time_diff > decommissioningTimeout) {
131
- Serial.println("Decommissioning the Light Matter Accessory. It shall be commissioned again.");
+ Serial.println("Decommissioning the Composed Light Matter Accessory. It shall be commissioned again.");
132
Matter.decommission();
133
button_time_stamp = millis(); // avoid running decommissining again, reboot takes a second or so
134
}
0 commit comments