We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f79e03 commit 7302be9Copy full SHA for 7302be9
libraries/Matter/examples/MatterOnIdentify/MatterOnIdentify.ino
@@ -65,7 +65,7 @@ bool onOffLightCallback(bool state) {
65
66
// Identification shall be done by Blink in Red or just the GPIO when no LED_BUILTIN is not defined
67
bool onIdentifyLightCallback(bool identifyIsActive) {
68
- log_i("Identify Cluster is %s", identifyIsActive ? "Active" : "Inactive");
+ Serial.printf("Identify Cluster is %s\r\n", identifyIsActive ? "Active" : "Inactive");
69
if (identifyIsActive) {
70
// Start Blinking the light in loop()
71
identifyFlag = true;
0 commit comments