ASCEND Flight Software
Loading...
Searching...
No Matches
TempSensor.h
Go to the documentation of this file.
1#ifndef TEMP_SENSOR_H
2#define TEMP_SENSOR_H
3
4#include "Sensor.h"
5
10class TempSensor : public Sensor {
11 private:
12 public:
13 TempSensor();
14 TempSensor(unsigned long minium_period);
15 bool verify() override;
16 String readData() override;
17 void readDataPacket(uint8_t*& packet) override;
18 String decodeToCSV(uint8_t*& packet) override;
19};
20
21#endif
int attempt_number
Definition Device.h:19
Parent class for sensor objects.
Definition Sensor.h:13
Implementation of a Sensor for the onboard temperature sensor.
Definition TempSensor.h:10
String decodeToCSV(uint8_t *&packet) override
Used for onboard decoding of packets.
Definition TempSensor.cpp:45
bool verify() override
Returns if sensor can be reached, the temperature sensor is on the pico so it is assumed to be always...
Definition TempSensor.cpp:25
TempSensor()
Construct a new Temp Sensor object with default minimum_period of 0 ms.
Definition TempSensor.cpp:7
String readData() override
Reads temperature data in Celsius.
Definition TempSensor.cpp:32
void readDataPacket(uint8_t *&packet) override
Used for creating packets, reads data from the sensor and appends it to the passed uint8_t array poin...
Definition TempSensor.cpp:34