ASCEND Flight Software
Loading...
Searching...
No Matches
Sensor.h
Go to the documentation of this file.
1#ifndef SENSOR_H
2#define SENSOR_H
3
4#include <Arduino.h>
5
6#include "Device.h"
7#include "Logger.h"
8
13class Sensor : public Device {
14 private:
17
18 protected:
20
21 public:
22 Sensor(String sensor_name, String csv_header, unsigned long minimum_period)
24 this->minimum_period = minimum_period;
25 this->last_execution = 0;
26 this->csv_header = csv_header;
27 this->empty_csv = "";
28 this->num_fields = 0;
29 for (size_t i = 0; i < csv_header.length(); i++) {
30 if (csv_header[i] == ',') {
31 this->empty_csv += "-,";
32 this->num_fields++;
33 }
34 }
35 }
36
39
50
62
68 unsigned long getPeriod() const { return minimum_period; }
69
75 void setPeriod(int minimum_period) { this->minimum_period = minimum_period; }
76
82 unsigned long getLastExecution() const { return last_execution; }
83
90 this->last_execution = last_execution;
91 }
92
98 const String& getSensorCSVHeader() const { return this->csv_header; }
99
106 virtual bool verify() = 0;
107
113 virtual String readData() = 0;
114
122 virtual void readDataPacket(uint8_t*& packet) {};
123
130 virtual String decodeToCSV(uint8_t*& packet) {
131 return "(" + this->getDeviceName() + " data), ";
132 };
133
142 void getDataPacket(uint32_t& sensor_id, uint8_t*& packet) {
143 if (millis() - this->last_execution >= this->minimum_period) {
144 uint8_t* before = packet;
146
147 sensor_id = (sensor_id << 1);
148 if (packet != before) {
149 this->last_execution = millis();
150 sensor_id |= 1;
151 }
152 } else {
153 sensor_id = (sensor_id << 1) | 0;
154 }
155 }
156
163 String readEmpty() const { return this->empty_csv; }
164
171 String getDataCSV() {
172 if (millis() - this->last_execution >= this->minimum_period) {
173 this->last_execution = millis();
174 return readData();
175 } else {
176 return readEmpty();
177 }
178 }
179};
180
181#endif
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