From 28a1b81298cd5b9c2ffabe35e60cffa1874ec837 Mon Sep 17 00:00:00 2001 From: Khoi Hoang <57012152+khoih-prog@users.noreply.github.com> Date: Fri, 4 Mar 2022 23:08:35 -0500 Subject: [PATCH] v1.3.1 to add `waitingForDRD()` function ### Releases v1.3.1 1. Add waitingForDRD() function to signal in DRD wating period. Check [DRD is waiting for a double reset? #14](https://github.com/khoih-prog/ESP_DoubleResetDetector/discussions/14) 2. Add example [checkWaitingDRD](https://github.com/khoih-prog/ESP_DoubleResetDetector/tree/master/examples/checkWaitingDRD) to demo how to use the new feature. --- examples/checkWaitingDRD/checkWaitingDRD.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/checkWaitingDRD/checkWaitingDRD.ino b/examples/checkWaitingDRD/checkWaitingDRD.ino index 1e2cf6b..86849e2 100644 --- a/examples/checkWaitingDRD/checkWaitingDRD.ino +++ b/examples/checkWaitingDRD/checkWaitingDRD.ino @@ -17,7 +17,7 @@ // For ESP8266, You must select one to be true (RTC, EEPROM, LITTLEFS or SPIFFS) // Otherwise, library will use default EEPROM storage -// This example demonstrate how to use new function waitingForDRD() to signal the stage of DRD +// This example demonstrates how to use new function waitingForDRD() to signal the stage of DRD // waitingForDRD() returns true if in DRD_TIMEOUT, false when out of DRD_TIMEOUT // In this example, LED_BUILTIN will blink in DRD_TIMEOUT period, ON when DR has been detected, OFF otherwise