We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6759dd7 commit f9b2decCopy full SHA for f9b2dec
libraries/Matter/examples/MatterFan/MatterFan.ino
@@ -87,7 +87,7 @@ void setup() {
87
Fan.onChangeMode([](MatterFan::FanMode_t fanMode) {
88
// when the Fan is turned on using Mode Selection, while it is OFF, shall start it by setting the speed to 50%
89
if (Fan.getSpeedPercent() == 0 && fanMode != MatterFan::FAN_MODE_OFF) {
90
- Serial.printf("Fan set to %s mode -- speed percentage will go to 50%\r\n", Fan.getFanModeString(fanMode));
+ Serial.printf("Fan set to %s mode -- speed percentage will go to 50%%\r\n", Fan.getFanModeString(fanMode));
91
// ATTR_SET do not update the attribute, just set it to avoid inifinite loop
92
return Fan.setSpeedPercent(50, Fan.ATTR_SET);
93
}
0 commit comments