8#define MINUTE_IN_MILLIS (1000 * 60)
35 this->verified =
false;
36 this->last_attempt = -1;
37 this->max_attempts = 1;
38 this->attempt_number = 0;
116 if (this->verified ==
false &&
117 (this->max_attempts == -1 ||
119 ((
millis() - this->last_attempt) >
120 (this->wait_factor * this->attempt_number))) {
121 log_core(
"Attempt on " + this->device_name);
123 this->verified = this->
verify();
125 this->last_attempt =
millis();
126 if (this->verified) {
127 this->attempt_number = 0;
129 this->attempt_number++;
#define MINUTE_IN_MILLIS
Definition Device.h:8
Implements the recovery system for Sensor and Storage objects.
Definition Device.h:14
bool getVerified()
Get if the Device is Verified.
Definition Device.h:73
Device(String device_name)
Default constructor, sets a max_attempt of 1 (device recovery won't be attempted)
Definition Device.h:34
virtual bool verify()=0
Verifies if the Device is connected and working.
unsigned long last_attempt
Definition Device.h:16
Device(String device_name, int max_attempts, int wait_factor)
Definition Device.h:51
unsigned long wait_factor
Definition Device.h:20
void setMaxAttempts(int max_attempts)
Set max_attempts.
Definition Device.h:102
int attempt_number
Definition Device.h:19
bool verified
Definition Device.h:25
String device_name
Definition Device.h:26
bool attemptConnection()
If the sensor is verified, return true, if not and it has been long enough since the last attempt (de...
Definition Device.h:113
const String & getDeviceName()
Definition Device.h:57
int max_attempts
Definition Device.h:18
void setWaitFactor(int wait_factor)
Set wait_factor.
Definition Device.h:94
void recoveryConfig(int max_attempts, int wait_factor)
Set recovery config (used keep default constructor)
Definition Device.h:83