We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3961642 commit 8c15603Copy full SHA for 8c15603
libraries/Zigbee/examples/Zigbee_Color_Dimmable_Light/Zigbee_Color_Dimmable_Light.ino
@@ -86,7 +86,7 @@ void setup() {
86
}
87
88
void loop() {
89
- // Cheking button for factory reset
+ // Checking button for factory reset
90
if (digitalRead(BUTTON_PIN) == LOW) { // Push button pressed
91
// Key debounce handling
92
delay(100);
@@ -95,7 +95,7 @@ void loop() {
95
delay(50);
96
if ((millis() - startTime) > 3000) {
97
// If key pressed for more than 3secs, factory reset Zigbee and reboot
98
- Serial.printf("Reseting Zigbee to factory settings, reboot.\n");
+ Serial.printf("Resetting Zigbee to factory settings, reboot.\n");
99
Zigbee.factoryReset();
100
101
0 commit comments