ASCEND Flight Software
Loading...
Searching...
No Matches
TMP117Sensor.h
Go to the documentation of this file.
1#ifndef TMP117_SENSOR_H
2#define TMP117_SENSOR_H
3
4#include <SparkFun_TMP117.h>
5#include <Wire.h>
6
7#include "PayloadConfig.h"
8#include "Sensor.h"
9
14class TMP117Sensor : public Sensor {
15 private:
16 TMP117 tmp;
17 float tempC;
19
20 public:
22 TMP117Sensor(unsigned long minium_period, TwoWire* i2c_bus = &Wire);
23 bool verify();
24 String readData();
25
26 // Function to integrate sensor data into a packet buffer.
27 void readDataPacket(uint8_t*& packet);
28
29 // Function to decode sensor data from a packet and return a CSV string
30 String decodeToCSV(uint8_t*& packet);
31
32 float getTempC();
33};
34
35#endif
Central location for pinout and config defines.
int attempt_number
Definition Device.h:19
Parent class for sensor objects.
Definition Sensor.h:13
Implementation of a Sensor for the TMP117.
Definition TMP117Sensor.h:14
String decodeToCSV(uint8_t *&packet)
Decodes sensor data from the packet into a CSV string.
Definition TMP117Sensor.cpp:64
bool verify()
Returns if sensor is connected and working.
Definition TMP117Sensor.cpp:28
float tempC
Definition TMP117Sensor.h:17
TMP117 tmp
Definition TMP117Sensor.h:16
void readDataPacket(uint8_t *&packet)
Reads sensor data (Temp (C)) and appends to the passed uint8_t array pointer, incrementing it.
Definition TMP117Sensor.cpp:50
float getTempC()
Getter for tempC.
Definition TMP117Sensor.cpp:78
String readData()
Reads temperature in Celcius from TMP117.
Definition TMP117Sensor.cpp:38
TwoWire * i2c_bus
Definition TMP117Sensor.h:18