25 this->last_execution = 0;
31 this->empty_csv +=
"-,";
143 if (
millis() - this->last_execution >= this->minimum_period) {
149 this->last_execution =
millis();
172 if (
millis() - this->last_execution >= this->minimum_period) {
173 this->last_execution =
millis();
Implements the recovery system for Sensor and Storage objects.
Definition Device.h:14
int attempt_number
Definition Device.h:19
const String & getDeviceName()
Definition Device.h:57
Parent class for sensor objects.
Definition Sensor.h:13
void getDataPacket(uint32_t &sensor_id, uint8_t *&packet)
Append the data from a sensor to the packet if the minium period is satisfied.
Definition Sensor.h:142
Sensor(String sensor_name, String csv_header)
Definition Sensor.h:37
String getDataCSV()
Uses readData and readEmpty to get the data-filled or empty-celled CSV line for the sensor.
Definition Sensor.h:171
String csv_header
Definition Sensor.h:16
virtual bool verify()=0
Verifies if the sensor is connected and working.
Sensor(String sensor_name, String csv_header, unsigned long minimum_period)
Definition Sensor.h:22
virtual String readData()=0
Returns the collected data from the sensor in CSV format.
String readEmpty() const
Returns CSV line in the same format as readData() but with "-" instead of data.
Definition Sensor.h:163
const String & getSensorCSVHeader() const
Get the csv header string associated with this sensor.
Definition Sensor.h:98
Sensor(String sensor_name, String csv_header, int fields, unsigned long minimum_period)
Construct a new Sensor object (Depreciated)
Definition Sensor.h:59
unsigned long getPeriod() const
Get the minimum minimum_period between sensor reads in ms.
Definition Sensor.h:68
int num_fields
Definition Sensor.h:19
String empty_csv
Definition Sensor.h:16
virtual String decodeToCSV(uint8_t *&packet)
Used for onboard decoding of packets.
Definition Sensor.h:130
unsigned long minimum_period
Definition Sensor.h:15
unsigned long last_execution
Definition Sensor.h:15
unsigned long getLastExecution() const
Get the system time of the last execution in ms.
Definition Sensor.h:82
Sensor(String sensor_name, String csv_header, int fields)
Construct a new Sensor object with default minimum_period of 0 (depreciated)
Definition Sensor.h:48
virtual void readDataPacket(uint8_t *&packet)
Used for creating packets, reads data from the sensor and appends it to the passed uint8_t array poin...
Definition Sensor.h:122
void setLastExecution(int last_execution)
Set the system time of the last execution in ms.
Definition Sensor.h:89
void setPeriod(int minimum_period)
Set the minimum minimum_period between sensor reads in ms.
Definition Sensor.h:75