Skip to content

Commit

Permalink
fix(): Codespell
Browse files Browse the repository at this point in the history
  • Loading branch information
P-R-O-C-H-Y committed Oct 2, 2024
1 parent 3961642 commit 8c15603
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ void setup() {
}

void loop() {
// Cheking button for factory reset
// Checking button for factory reset
if (digitalRead(BUTTON_PIN) == LOW) { // Push button pressed
// Key debounce handling
delay(100);
Expand All @@ -95,7 +95,7 @@ void loop() {
delay(50);
if ((millis() - startTime) > 3000) {
// If key pressed for more than 3secs, factory reset Zigbee and reboot
Serial.printf("Reseting Zigbee to factory settings, reboot.\n");
Serial.printf("Resetting Zigbee to factory settings, reboot.\n");
Zigbee.factoryReset();
}
}
Expand Down

0 comments on commit 8c15603

Please sign in to comment.